求教楼主,第三方库的auto-complete有点问题,代码如下:
from PIL import Image # 这里自动补全正常
image = Image.open('~/Downloads/1.jpg')
image.<这里auto-complete不会自动出现>
setting.json主要就是这两行
{
"python.pythonPath": "/Library/Frameworks/Python.framework/Versions/3.6/bin/python3",
"python.autoComplete.extraPaths": ["/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages"]
}
环境:macOS,Python 3.6.6,VS Code 1.28.2,
Visual Studio Code For Python 使用心得keyword:自动补全、调试 网络上已经有很多教程,介绍如何使用 vscode 来编写 python 代码,这里我就引用一下,为了给自己留着记录,下面就是我遇到的一些小坑,...