How to install and run Juypter/Ipython Notebook in Ubuntu/Debian/Linux Mint
Jupyter is a an opensource webapp that allows you to make documents containing live code which can be compiled within the Jupyter notebook itself. It supports over 40 programming languages like python, Ruby...
Earlier Jupyter was knows as Ipython Notebook.
It is widely used by the scientific community and teachers.
You can also run online Jupyter without installing it from http://try.jupyter.org
you can install Jupyter via conda or pip.
1. Using Anaconda
First, make sure Anaconda is installed.
2. Using Pip or pip3
First, make sure you have pip or pip3 installed. (sudo apt-get install python-pip)
or
Read more »
Earlier Jupyter was knows as Ipython Notebook.
It is widely used by the scientific community and teachers.
You can also run online Jupyter without installing it from http://try.jupyter.org
Installation:
you can install Jupyter via conda or pip.
1. Using Anaconda
First, make sure Anaconda is installed.
conda install jupyter
2. Using Pip or pip3
First, make sure you have pip or pip3 installed. (sudo apt-get install python-pip)
pip install jupyter
pip3 install jupyter
Read more »
Comments
Post a Comment