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
}
推荐阅读
-
有关JSON以及JSON在PHP中的应用_php技巧
-
html页面中如何实现保留空格以及换行符的实例分析
-
JavaScript中的require与import以及export的详解
-
html中
标签的用法以及作用解析 -
关于python中的__init__与__new__以及__call__三个方法的简单介绍
-
php class中self,parent,this的区别以及实例介绍_php技巧
-
Java中如何获取文件名以及的文件的后缀名
-
php中抽象类和接口的概念以及区别
-
jQuery中关于用on代替delegate以及live的写法区别详解
-
java中 instanceof 和 StringUtils.isEmpty(str)和String.StartsWith() 的作用以及用法