Skip to content

Instantly share code, notes, and snippets.

View georgelesica-wf's full-sized avatar

George Lesica georgelesica-wf

View GitHub Profile
@georgelesica-wf
georgelesica-wf / jvm
Last active March 15, 2016 02:37 — forked from tmlbl/jvm
JVM - Julia Version Manager
#!/usr/bin/env bash
# Switches between various Julia versions. By default, looks for versions in
# $HOME/local/julia/, but this can be configured by setting the JVM_BIN_PREFIX
# variable. Also links the corresponding packages directory to $HOME/julia-pkgs
# for convenience.
JVM_PKG_PREFIX=${JVM_PKG_PREFIX:-"$HOME/.julia"}
JVM_BIN_PREFIX=${JVM_BIN_PREFIX:-"$HOME/local/julia"}