Jupyter Notebook The essence of Web Applications , Easy to create and share program documents , Real time code support , Mathematical equation , Visualization and markdown. Uses include : Data cleaning and conversion , Numerical simulation , Statistical modeling , Machine learning and so on .
### install pip
## pip Is an installation and management Python Package tools
wget https://bootstrap.pypa.io/get-pip.py
python3 get-pip.py
## Create a soft connection
ln -s /usr/local/python3/bin/pip /usr/bin/pip3
pip --version
pip list
pip install ipython
pip3 install --default-timeout=100 jupyter==1.0.0
# pip install The default timeout is 15s, Timeout may occur during installation . When we execute the order , You can explicitly specify the timeout .
# Do not specify package version , The default is the highest version
which pip # System path
### pip install jupyter notebook
pip install jupyter
### start-up
jupyter notebook
### View the associated python
import sys
print(sys.version)
print(sys.executable)