1. 安装
- 安装对应的python版本, 直接上官网安装就好了. 安装成功后, 然后就是安装Jupyter, mac用户直接在
终端
使用pip3 install jupyter
- 在vscode中找到Python插件 .
(不需要再安装Jupyter插件了, Jupyter插件已经不再更新了) -
写代码.
2. Getting start
hello world
#%%
是Jupyter的预定义符号, 写上它就可以开始愉快地写代码了! 写了#%%
这个之后就多了一个 Run cell在代码上面, 点击就可以跑出结果了.
#%%
msg = "Hello World"
print(msg)
# sin 函数
#%%
import matplotlib.pyplot as plt
import matplotlib as mpl
import numpy as np
x = np.linspace(0, 20, 100)
plt.plot(x, np.sin(x))
plt.show()
3.Something shit happens~
Jupyter
启动是会本地启动一个server的, 有时候会出现一些问题, 服务器启动不起来, 多个Jupyter
在运行等等.
指定Jupyter的server
vscode中⇧⌘P(或者F1), 然后输入Python: Specify Jupyter server URI
指定python的版本
1.有时候安装了多个python版本, 要指定python版本, 直接点击左下角, 就可以选定python的版本.
2.vscode中⇧⌘P, 然后输入Python: Select Interpreter
选择对应的python版本