程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
您现在的位置: 程式師世界 >> 編程語言 >  >> 更多編程語言 >> Python

Python install Jupiter

編輯:Python

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)


  1. 上一篇文章:
  2. 下一篇文章:
Copyright © 程式師世界 All Rights Reserved