Skip to content

Commit d3aeeb3

Browse files
authored
In "Platform Specific Instructions" -> "macOS", when creating the symlink, sudo is needed for all of the commands (#1445)
1 parent ce34e5c commit d3aeeb3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

downloads/platform.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,8 @@ You can launch Julia by opening the Julia app [like any other application](https
6161
If you want to launch Julia from the command line, first [open a new terminal window](https://www.howtogeek.com/682770/how-to-open-the-terminal-on-a-mac/), then run the following snippet from your [shell](https://superuser.com/questions/144666/what-is-the-difference-between-shell-console-and-terminal) (e.g., using the Terminal app, not inside the Julia prompt).
6262

6363
~~~
64-
<pre><code class="language-shell">mkdir -p /usr/local/bin
65-
rm -f /usr/local/bin/julia
64+
<pre><code class="language-shell">sudo mkdir -p /usr/local/bin
65+
sudo rm -f /usr/local/bin/julia
6666
sudo ln -s /Applications/Julia-{{stable_release_short}}.app/Contents/Resources/julia/bin/julia /usr/local/bin/julia</code></pre>
6767
~~~
6868

0 commit comments

Comments
 (0)