Skip to content

Instantly share code, notes, and snippets.

@multidis
Last active August 29, 2015 13:57
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 multidis/9850589 to your computer and use it in GitHub Desktop.
Save multidis/9850589 to your computer and use it in GitHub Desktop.
Scientific computing tools along with IPython and IJulia: setup on Ubuntu machine.
## numpy, scipy, etc.
sudo apt-get install libblas-dev liblapack-dev gfortran
sudo apt-get install python-numpy
sudo apt-get install python-scipy
sudo apt-get install python-matplotlib python-pandas python-sympy python-nose
## IPython notebook: use up-to-date repository
sudo add-apt-repository ppa:jtaylor/ipython
sudo apt-get update
sudo apt-get install ipython ipython-notebook ipython-qtconsole
sudo apt-get install python-zmq python-jinja2 python-sphinx
sudo apt-get install python-pygments python-tornado
## then follow https://github.com/JuliaLang/IJulia.jl
## create shortcut (run command in terminal type)
## ipython notebook --profile julia
## run IJulia notebook
ipython notebook --profile julia
## use menu to download as source code file (always good to save)
## convert notebook file to other formats
## default html:
ipython nbconvert notebook.ipynb
## other formats: http://ipython.org/ipython-doc/rel-1.0.0/interactive/nbconvert.html
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment