Difference between revisions of "IPython"

From stgo
Jump to: navigation, search
Line 5: Line 5:
 
* run the code with <shift+enter>
 
* run the code with <shift+enter>
 
* updating pandas (I had 0.7 installed but needed 0.9 for doing some str ops) simply type <code>sudo pip install --upgrade pandas</code>
 
* updating pandas (I had 0.7 installed but needed 0.9 for doing some str ops) simply type <code>sudo pip install --upgrade pandas</code>
 +
 +
== ToDo ==
 +
* check out GeoPandas (perhaps pysal) : http://github.com/geopandas/geopandas

Revision as of 18:53, 3 March 2015

  • for installing iPython see here: http://ipython.org/ipython-doc/2/install/install.html
  • start iPython notebook, run in a normal terminal
    ipython notebook --pylab inline
  • for the command line version on Ubuntu go to the menu and start development>ipython
  • run the code with <shift+enter>
  • updating pandas (I had 0.7 installed but needed 0.9 for doing some str ops) simply type sudo pip install --upgrade pandas

ToDo