devlcp / jill

Command line installer of the Julia Language.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

JILL - Julia Installer 4 Linux (and MacOS) - Light

Build Status

Simply install latest Julia for Linux and MacOS. For more functionality and flexibility you can try the python fork jill.py

Last tested version: Julia 1.3.0

On Linux, the best way to install Julia is to use the Generic Linux Binaries. And while all Linux users love manually downloading, unpacking, and linking their software, this script does it for you.

Simply run

bash -ci "$(curl -fsSL https://raw.githubusercontent.com/abelsiqueira/jill/master/jill.sh)"

installs Julia into $HOME/.local/bin.

If you want to install Julia system-wide, you can add an sudo prefix

sudo bash -ci "$(curl -fsSL https://raw.githubusercontent.com/abelsiqueira/jill/master/jill.sh)"

If you want to install to other places, you can specify the JULIA_DOWNLOAD and JULIA_INSTALL folder

JULIA_DOWNLOAD=downloadfolder JULIA_INSTALL=linkfolder bash -ci "$(curl -fsSL https://raw.githubusercontent.com/abelsiqueira/jill/master/jill.sh)"

The script will then download Julia in JULIA_DOWNLOAD and make a link to JULIA_INSTALL.

To download a specific older version, use

JULIA_VERSION=x.y.z bash -ci "$(curl -fsSL https://raw.githubusercontent.com/abelsiqueira/jill/master/jill.sh)"

Where x.y.z is the desired version.

If you wish to run the install script without interactive prompts, please clone this repository and run the following:

bash jill.sh -y

LICENSE

This script is licensed under the GNU GPLv3 (see LICENSE.md). This dosn't affect your Julia usage at all.

About

Command line installer of the Julia Language.

License:Other


Languages

Language:Shell 100.0%