Shift用+打开你的命令面板⌘</kbd> + P. Type in Preferences: Open Workspace Settings. I'll share the settings I use with you, some of which may be of interest:
{
"python.pythonPath": "${workspaceFolder}/backend/env/bin/python3",
"python.venvPath": "${workspaceFolder}/backend/env",
"python.linting.flake8Enabled": true,
"python.linting.flake8Path": "flake8",
"python.linting.flake8Args": ["--ignore", "E501"],
"python.linting.pylintEnabled": true,
"python.linting.pylintPath": "pylint",
"python.linting.pylintArgs": ["--load-plugins", "pylint_django"]
}
- python.pythonPath 是虚拟环境中 Python 解释器可执行文件的位置。在这种情况下,它是一个名为env的环境,位于名为backend的文件夹中。*${workspaceFolder} 是对您的项目所在位置的引用。
- python.venvPath 是您的虚拟环境的文件夹。
- 其余六个键/值用于 flake8 和 pylint 的启用和执行。尝试任何一个。
请注意,这些是工作区设置,而不是用户设置。用户设置适用于所有 Visual Studio Code 项目。