Install IPython 1.0 and Notebook for Virtualenv Python 2.7.5

Use the pip inside virtual environment to install ipython

(py2.7.5)naved@neo:~/Coding/azureprecomplier$ py2.7.5/bin/pip install ipython

Install ipython dependencies:

sudo apt-get install libncurses5-dev
sudo ~/Coding/py2.7.5/bin/easy_install readline

Install notebook dependencies:

(py2.7.5)naved@neo:~/Coding$ py2.7.5/bin/pip install pyzmq
(py2.7.5)naved@neo:~/Coding$ py2.7.5/bin/pip install jinja2
(py2.7.5)naved@neo:~/Coding$ py2.7.5/bin/pip install tornado

Run ipython inside virtual environment

(py2.7.5)naved@neo:~/Coding/azureprecomplier$ ipython
/home/naved/Coding/azureprecomplier/py2.7.5/lib/python2.7/site-packages/IPython/frontend.py:30: UserWarning: The top-level `frontend` package has been deprecated. All its subpackages have been moved to the top `IPython` level.
  warn("The top-level `frontend` package has been deprecated. "
Python 2.7.5 (default, Aug 30 2013, 22:14:16) 
Type "copyright", "credits" or "license" for more information.

IPython 1.0.0 -- An enhanced Interactive Python.
?         -> Introduction and overview of IPython's features.
%quickref -> Quick reference.
help      -> Python's own help system.
object?   -> Details about 'object', use 'object??' for extra details.

In [1]:

Run ipython notebook:

(py2.7.5)naved@neo:~/Coding/azureprecomplier$ ipython notebook

Leave a comment