Skip to content

Commit 1adf983

Browse files
committed
Fix #959
1 parent 187c63b commit 1adf983

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

downloads/platform.md

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -75,17 +75,15 @@ Once that is done, you can close the shell profile page and quit Terminal. Now,
7575

7676
You can uninstall Julia by deleting Julia.app and the packages directory in `~/.julia`. Multiple Julia.app binaries can co-exist without interfering with each other. If you would also like to remove your preferences files, remove `~/.juliarc.jl` and `~/.julia_history`.
7777

78-
79-
8078
## Linux and FreeBSD
8179

82-
It is strongly recommended that the official generic binaries from the downloads page be used to install Julia on Linux and FreeBSD. The following
83-
command downloads the latest Julia version and makes a symlink to allow the `julia` command to find the binary:
80+
It is strongly recommended that the official generic binaries from the downloads page be used to install Julia on Linux and FreeBSD. The following command downloads the latest Julia version in your home directory. The last line demonstrates how to start `julia`:
8481

8582
```
83+
cd ~
8684
wget https://julialang-s3.julialang.org/bin/linux/x64/{{stable_release_short}}/julia-{{ stable_release }}-linux-x86_64.tar.gz
87-
tar -xvzf julia-{{ stable_release }}-linux-x86\_64.tar.gz
88-
ln -s "$PWD"/julia-{{ stable_release }}/bin/julia ~/.local/bin/
85+
tar zxvf julia-{{ stable_release }}-linux-x86_64.tar.gz
86+
~/julia-{{ stable_release }}/bin/julia
8987
```
9088

9189
### More Detailed Instructions and Explanation

0 commit comments

Comments
 (0)