Jupyter Notebook extension




Jupyter Notebook is a great IDE for machine learning. The best thing is you can run the code as well as make note also. It is widely popular for its visualization and live code structure.

To install Jupyter 

pip install jupyter

You can also install Anaconda which includes Jupyter and other tools.
https://www.anaconda.com/distribution/


One thing which is not good about Jupyter that it doesn't have some basic features like code folding. But we can do that using extension.

To install jupyter extension

conda install -c conda-forge jupyter_contrib_nbextensions

Documentation : https://jupyter-contrib-nbextensions.readthedocs.io/en/latest/install.html

Comments