Created
January 31, 2020 10:13
-
-
Save ucalyptus/c79cedb490943b82f4df9ddcd155e11b to your computer and use it in GitHub Desktop.
Inputs for julia-base.ipynb first cell for installation of Julia,IJulia,Flux
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
!curl -sSL "https://julialang-s3.julialang.org/bin/linux/x64/1.3/julia-1.3.1-linux-x86_64.tar.gz" -o julia.tar.gz | |
!tar -xzf julia.tar.gz -C /usr --strip-components 1 | |
!rm -rf julia.tar.gz* | |
!julia -e 'using Pkg; pkg"add IJulia; add Flux; precompile"' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment