之前在知乎上看到开源的VS code,感觉很喜欢这种风格,遂更换掉之前的sublimeText和Atom
因为之前在学习Java,所以用IDEA比较多,因此安装完就没有用太多次。最近,又开始用Python学习和写一些爬虫,每次都打开pyCharm比较麻烦,所以想着用VS code方便多了。结果,每次写完以后需要运行的时候,发现总是出现ImportError: No module named requests错误。
于是,我先排查了自己安装了这些库没有,多次检查后发现是安装好的,可以在终端中通过以下命令查看已安装好的库
$pydoc modules
或者进入Python中
>>> help("modules")
两种方法的效果是一样
之后,通过查阅Google,更改了多次settings.json,还是不行。
最后在Stack Overflow上看到作者说这是一个BUG
发现需要通过Mac:command+shift+B(Win:Ctrl+Shift+B)
选择Other,新建运行脚本
然后把下列代码输入到tasks.json中
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
// Python路径
"command": "/usr/local/bin/python3",
// 名称
"label": "python3",
"type": "shell",
"args": [
"${file}"
],
"presentation": {
"echo": true,
"reveal": "always",
"focus": false,
"panel": "shared",
"showReuseMessage": true,
"clear": false
},
"group": {
"kind": "build",
"isDefault": true
}
}
]
}
每次运行Python3的时候用command+Shift+B运行即可
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。