A Julia version manager
JuliaVM is a command-line tool which allows you to easily install, manage, and work with Julia environments and switch between them easily. It's inspired in rvm and nvm.
Clone the repo:
git clone https://github.com/pmargreff/juliavm
Inside the repo provide the right permissions to install:
cd juliavm && chmod u+x install.sh
Run the script for install:
./install.sh
juliavm ls-remote
- list all remote versionsjuliavm ls
- list all locale versionsjuliavm install x.y.z [-ARCHITECTURE]
- install x.y.x version, ARCHITECTURE is an optional paramjuliavm use x.y.z [-ARCHITECTURE]
- use x.y.x version, ARCHITECTURE is an optional paramjuliavm update
- update juliavm with latest resourcesjuliavm uninstall [--hard]
- uninstall juliavm and all julia versions downloaded inside juliavm, with hard parameter it uninstall all Julia packages, if not pass hard param soft uninstall (doesn't delete Julia major packages) will be used.juliavm help
- list all available commands
-x64
- unix 64 bits-x86
- unix 32 bits- If you don't pass the architecture unix 64 bits will be used.
Unix (32 and 64 bits) version is supported right now, feel free to add OSX compatibility or use asdf instead.