-
-
Notifications
You must be signed in to change notification settings - Fork 191
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update Julia to 1.7.0 #144
base: main
Are you sure you want to change the base?
Conversation
manual: | | ||
wget https://julialang-s3.julialang.org/bin/linux/x64/1.7/julia-1.7.0-linux-x86_64.tar.gz |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we update this to automatically detect the latest version, as suggested in https://github.com/raxod502/riju/blob/master/doc/tutorial/install.md?
wget https://julialang-s3.julialang.org/bin/linux/x64/1.7/julia-1.7.0-linux-x86_64.tar.gz | ||
tar xvf julia-*.tar.gz | ||
rm julia-*.tar.gz | ||
ln -s julia-*/bin/julia /usr/local/bin/julia |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should the other files in the tarball also be installed?
manual: | | ||
wget https://julialang-s3.julialang.org/bin/linux/x64/1.7/julia-1.7.0-linux-x86_64.tar.gz | ||
tar xvf julia-*.tar.gz | ||
rm julia-*.tar.gz |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We don't actually need to clean things up since this script is run in a temporary directory.
manual: | | ||
wget https://julialang-s3.julialang.org/bin/linux/x64/1.7/julia-1.7.0-linux-x86_64.tar.gz | ||
tar xvf julia-*.tar.gz |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
tar xvf julia-*.tar.gz | |
tar -xf julia-*.tar.gz |
No description provided.