Add existing python venv into VS Code
当想要在 VS Code 中运行 jupyter notebook,并想使用已经创建的 Python 虚拟环境作为运行的kernel时,可以使用如下的步骤:
-
在python 虚拟环境 venv 文件夹下找到位于 jupyter 下的文件
[text](../../../py_machine_learning/share/jupyter/kernels/python3/kernel.json)
;
该文件的位置是: “/your_venv/share/jupyter/kernels/python3/kernel.json”。 -
在 VS Code 中打开设置,并搜索 “jupyter path”;
-
在 “Jupyter › Kernels: Trusted” 下选择添加,输入1中的路径;
-
在jupyter中就可以看到刚才添加的虚拟环境了。
Comments