Skip to content

Commit

Permalink
Simplify Linux installation to copy-paste (#928)
Browse files Browse the repository at this point in the history
* Simplify Linux installation to copy-paste

* Update platform.md

* Update downloads/platform.md

Co-authored-by: Rafael Fourquet <fourquet.rafael@gmail.com>

* Update platform.md

* Update downloads/platform.md

Co-authored-by: Zlatan Vasović <zlatanvasovic@gmail.com>

Co-authored-by: Rafael Fourquet <fourquet.rafael@gmail.com>
Co-authored-by: Viral B. Shah <ViralBShah@users.noreply.github.com>
Co-authored-by: Zlatan Vasović <zlatanvasovic@gmail.com>
  • Loading branch information
4 people authored Aug 14, 2020
1 parent 96ea0d8 commit 9b7d2e1
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion downloads/platform.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,9 +79,16 @@ You can uninstall Julia by deleting Julia.app and the packages directory in `~/.

## Linux and FreeBSD

It is strongly recommended that the official generic binaries from the downloads page be used to install Julia on Linux and FreeBSD.
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 and makes a symlink to allow the `julia` command to find the binary:

```
wget https://julialang-s3.julialang.org/bin/linux/x64/1.4/julia-{{ stable_release }}-linux-x86_64.tar.gz
tar -xvzf julia-{{ stable_release }}-linux-x86\_64.tar.gz
ln -s "$PWD"/julia-{{ stable_release }}/bin/julia ~/.local/bin/
```

### More Detailed Instructions and Explanation

The generic Linux and FreeBSD binaries do not require any special installation steps, but you will need to ensure that your system can find the `julia` executable.

Expand Down

0 comments on commit 9b7d2e1

Please sign in to comment.