Difference between revisions of "Ipython Notebook"

From Pumping Station One
Jump to navigation Jump to search
(Created page with " == What is It == An Ipython Notebook: handy for sharing python scripts in IRC or in classes! https://notebook.pumpingstationone.org == installation notes == If the server...")
 
m (Robot: Cosmetic changes)
 
(5 intermediate revisions by one other user not shown)
Line 1: Line 1:
 
 
== What is It ==
 
== What is It ==
  
Line 8: Line 7:
 
== installation notes ==
 
== installation notes ==
  
If the server needs to be rebuilt, these instrictons should help get everythig back up and running
+
If the server needs to be rebuilt, these instructons should help get everything back up and running
  
     sudo pacman -S blas lapack
+
     sudo pacman -S blas lapack gcc-fortran
     pip install numpy matplotlib pandas
+
     virtualenv venv
 +
    venv/bin/pip install ipython[all] numpy scipy matplotlib pandas
 +
    venv/bin/python -c "from IPython.external.mathjax import install_mathjax; install_mathjax()"
 +
    venv/bin/ipython notebook --init

Latest revision as of 07:32, 24 December 2014

What is It

An Ipython Notebook: handy for sharing python scripts in IRC or in classes!

https://notebook.pumpingstationone.org

installation notes

If the server needs to be rebuilt, these instructons should help get everything back up and running

   sudo pacman -S blas lapack gcc-fortran
   virtualenv venv
   venv/bin/pip install ipython[all] numpy scipy matplotlib pandas
   venv/bin/python -c "from IPython.external.mathjax import install_mathjax; install_mathjax()"
   venv/bin/ipython notebook --init