Skip to content

Instantly share code, notes, and snippets.

@ucalyptus
Created January 31, 2020 10:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ucalyptus/c79cedb490943b82f4df9ddcd155e11b to your computer and use it in GitHub Desktop.
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
!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