Jupyter Notebook安装

Jupyter Notebook安装

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)

 

发表回复

您的电子邮箱地址不会被公开。