Difference between revisions of "IPython"
From stgo
Line 2: | Line 2: | ||
* start iPython notebook, run in a normal terminal <code>ipython notebook</code> | * start iPython notebook, run in a normal terminal <code>ipython notebook</code> | ||
* for the command line version on Ubuntu go to the menu and start development>ipython | * 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 <code>pip install --upgrade pandas</code> |
Revision as of 16:58, 10 October 2014
- for installing iPython see here: http://ipython.org/ipython-doc/2/install/install.html
- start iPython notebook, run in a normal terminal
ipython notebook
- 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
pip install --upgrade pandas