vscode中配置jupyter notebook

时间:2024-03-26 19:24:20
jupyter notebook in vscode

 
 
 
 
 
 
 
 

文章目录

 
 
 
 

基础环境

jupyter notebook:

​ 若已安装anaconda或其他jupyter则可忽略下方

  • 安装jupyter:

pip install jupyter -i https://pypi.tuna.tsinghua.edu.cn/simple

  • 配置环境变量

vscode:

 
 
 
 

配置过程

 

1、打开vscode,并切换到终端 运行jupyter notebook

 

vscode中配置jupyter notebook

 

2、按 ctrl + shift + p,注意此处的ctrl是右ctrl。搜索

Python: Create New Blank Jupyter Notebook

 

vscode中配置jupyter notebook

 

3、若提示有插件没装,则选择 yes 安装
 

vscode中配置jupyter notebook

 

4、安装完插件后,在弹出的 .ipynb 窗口中输入python代码并运行,查看插件是否安装成功

 

vscode中配置jupyter notebook

 

5、在 .py 文件中使用 jupyter notebook,打开.py文件,输入下方内容,.py文件变为cell形式

# %%

 

vscode中配置jupyter notebook
vscode中配置jupyter notebook

 

6、在cell中运行python代码,右侧即为实时预览

vscode中配置jupyter notebook