且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

Vscode配置jupyter

更新时间:2021-07-24 09:54:02

Vscode配置jupyter

环境

  • Win10
  • Vscode 1.40.2
  • Python 3.8
  • pip 19.3.1
  • jupyter 6.0.2效果图

install Python&jupyter

windows安装python3.8
windows通过pip安装jupyter
pip install jupyter

jupyter notebook 启动报错

报错asyncioevents.py", line 501, in add_reader
   raise NotImplementedError,通过修改对应报错路径下文件解决
报错 pywinpty 无法安装,可通过手动安装解决 

jupyter notebook list查看启动密码

Vscode安装Python
Vscode配置jupyter

Vscode安装jupyter插件
Vscode配置jupyter

quick start

  • 在vscode中创建下列python文件
#%%
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()
  • Click on the code lens Run Cell

Vscode配置jupyter

官方示例

Vscode配置jupyter

官方教程

 (Ctrl+Shift+P) 
Python: Create Blank New Jupyter Notebook 创建notebook编辑面板
Python:Select interpreter   选择虚拟环境