I am working on some projects using Julia v0.3. However, I'd like to test my code in both v0.3 and v0.4 (since some of the people that are going to be using it are already using v0.4). I'm running Ubuntu 14.04 and have installed Julia using apt-get. I know v0.4 is available through the PPA julianightlies, but if I add this, v0.3 is replaced. Is there a way I can install and quickly switch between both versions for testing purposes?
You can install different versions of Julia in different locations and set separate symlinks.
For example, you could download the v0.3 Linux binaries and install them to one location, then clone the GitHub source for v0.4 and install that in another location. Then set symlinks such as julia3
for v0.3 and julia4
for v0.4.
Run your code like:
$ julia3 somefile.jl
$ julia4 somefile.jl
Install by compiling and then change your she-bang in the start of the file as
#!/path_to/julia3
or
#!/path_to/julia4
That will do the trick
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With