欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

VScode以及jupyter中的一些问题

程序员文章站 2022-06-01 12:14:41
...

VScode以及jupyter中的一些问题

如果VScode中的jupyter无法找到自己的虚拟环境,检查下想要jupyter的kernel是否安装,具体如下

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

然后建立jupyter和这个内核的连接

python -m ipykernel install --user --name py36 --display-name py36

VScode中出现torch.module找不到就在设置的脚本中设置为:

{
    "window.zoomLevel": 1,
    "open-in-browser.default": "chrome",
    "python.pythonPath":"/home/wl/anaconda3/bin/python3.6",
    "python.linting.pylintArgs": ["--generate-members"],
    "terminal.integrated.inheritEnv": false
}
相关标签: 工具的使用