Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix simlink instruction in Julia_Cookbook-Supplement.md #1

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions Julia_Cookbook-Supplement.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,7 @@ Typing such a long command is not convenient.
Hence we recommend creating a symbolic link to the `julia` executable file in the `/usr/local/bin` folder:

```bash
$ sudo mkdir /usr/local/bin
$ sudo ln -fs /Applications/Julia-1.0.app/Contents/Resources/julia/bin/julia /usr/local/bin/julia
$ sudo ln -s /Applications/Julia-1.0.app/Contents/Resources/julia/bin/julia /usr/local/bin/julia
```

Note that on some macOS installations the folder `/usr/local/bin` does not exist by default and hence we create it.
Expand Down