pip install jupyter -i https://pypi.tuna.tsinghua.edu.cn/simple/
# cmd 启动 jupyter notebook
import numpy as np import matplotlib.pyplot as plt %matplotlib inline x = np.linspace(-10,10) y = np.sin(x) plt.plot(x,y)
pip install jupyter -i https://pypi.tuna.tsinghua.edu.cn/simple/
# cmd 启动 jupyter notebook
import numpy as np import matplotlib.pyplot as plt %matplotlib inline x = np.linspace(-10,10) y = np.sin(x) plt.plot(x,y)