How to install IPython notebook on your computer for data analysis

Data Mining | Tutorials   |   
Published November 17, 2015   |   

The tutorial is really short; just like wiki how tutorials are.
Follow these steps to install I python notebook and other scientific Python packages on your computer.

Installing Ipython Notebook

1) Download and install canopy on your computer.
2) To check whether canopy has installed successfully, go to command prompt and type IPython notebook, and press enter.
3) Ipython notebook will open in your browser. Click on new notebook to open a new Ipython notebook.
I python notebook
4) Ipython notebook will open in your browser. Click on new notebook to open a new Ipython notebook.
I python note book
If Canopy’s package doesn’t work on your computer, try Anaconda and follow the same procedure.
Amazing IPython notebook Tutorials:

5) Canopy consists of major Python packages required for data analysis. If a package is not available in Canopy, IPython notebook will generate an error.
For e.g. Open IPython notebook and enter “import brewer2mpl”, then run the code. You will get an error stating that “module is not present”
I Python notebook 2

6) To install a package that is not in Canopy. Go to command prompt and type “easy_install package name” (here we are installing brewer2mpl), then press enter.
Install a package not in canopy
A pop window will appear, you have to click yes. After the installation is over type “import brewer2mpl” in your Ipython notebook and run it. You won’t get an error this time. This shows that your package has been installed successfully.
Ipython notebook 3
Setting up Sublime text for Python development
1) Download sublime text 2. (Sublime text 3 is in beta version, so don’t install it)
2) Install package control (make sure you select sublime text 2 option)
Package control
3) Go to sublime text editor and click on view -> show console and paste the copied code. Press enter and restart sublime text.
Sublime text 2
4) Go to preferences -> click on package control -> type “install packages” -> type “sublime repl” -> select it. It will take some time to install sublime repl.
5) After the installation, Click on tools -> sublime repl -> Python -> IPython.
I prefer to work in two columns view, because you can write code in left column, and check output of the code in right column. Go to view and then in layout select two columns.
two panel view in sublime text
I also found this interesting video on how to install I python Notebook:
You can execute a program using build function (ctrl+B), or go to tools -> sublime repl-> Python-> run.
I also found an interesting video on how to install Ipython notebook:

Conclusion
Canopy also provides you a code editor with IPython Notebook Support. I rarely use sublime text for performing data analysis. I Python notebook is an awesome interactive environment. Use it and you will fall in love with it.
If you have any queries feel free to ask in comments.