Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pmargreff/juliavm
Julia Version Manager - Simple bash script to manage multiple julia environments
https://github.com/pmargreff/juliavm
julia version-manager
Last synced: 28 days ago
JSON representation
Julia Version Manager - Simple bash script to manage multiple julia environments
- Host: GitHub
- URL: https://github.com/pmargreff/juliavm
- Owner: pmargreff
- License: mit
- Created: 2017-01-20T01:44:46.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2021-02-20T22:12:08.000Z (almost 4 years ago)
- Last Synced: 2024-08-04T02:07:44.540Z (4 months ago)
- Topics: julia, version-manager
- Language: Shell
- Homepage:
- Size: 20.5 KB
- Stars: 47
- Watchers: 8
- Forks: 7
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: License.md
Awesome Lists containing this project
- awesome-env - juliavm
- awesome-version-managers - juliavm - A CLI tool which allows you to install, manage, and work with Julia environments and switch between them. (Version Managers / Julia)
README
# juliavm
A Julia version managerJuliaVM 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](https://rvm.io/) and [nvm](https://github.com/creationix/nvm).
## Install
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`
## Commands
- `juliavm ls-remote` - list all remote versions
- `juliavm ls` - list all locale versions
- `juliavm install x.y.z [-ARCHITECTURE]` - install x.y.x version, ARCHITECTURE is an optional param
- `juliavm use x.y.z [-ARCHITECTURE]` - use x.y.x version, ARCHITECTURE is an optional param
- `juliavm update` - update **juliavm** with latest resources
- `juliavm 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### Architectures
- `-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](https://github.com/asdf-vm/asdf) instead.