尝试设置Visual-Studio-Code并遇到正确配置virtualEnv的问题。阅读我在网上找到的所有内容并尝试了不同的解决方案:迄今为止都没有可能我只是没有得到文档,其他人都得到它。
答案 0 :(得分:2)
您的最终屏幕截图表明您正在正确使用venv
,其名称为" py3"。有很多方法可以从VSCode启动Python脚本:
根据我们交换的来回评论,您似乎没有使用任何这些标准方法启动,这可以解释为什么您的venv没有被提取。
答案 1 :(得分:0)
这是如何在Visual Studio Code文件夹中创建虚拟环境的分步指南:
我使用了Powershell(管理员模式):
1.我创建一个VSCode文件夹-“ D:\ Code_Python_VE”,在其中创建虚拟环境。
2.接下来,我键入命令-“ pip3 install virtualenv”。 (D:\ Code_Python_VE> pip3安装virtualenv)
3. D:\ Code_Python_VE> python3 -m venv project_env
4. D:\ Code_Python_VE> project_env \ Scripts \ activate.bat
5. D:\ Code_Python_VE> ls-这将列出一个新目录“ project_env”。
6. D:\ Code_Python_VE>代码。这将启动Visual Studio代码。确保命令是(code。)。
7.创建具有以下内容的launch.jason:
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "python",
"request": "launch",
"name": "Python: Current File (Integrated Terminal 1)",
"program": "${file}"
},
{
"name": "Python: Current File (Integrated Terminal 2)",
"type": "python",
"request": "launch",
"program": "${file}",
"console": "integratedTerminal"
},
]
}
(请搜索如何转到“调试”窗口并在VS Code中添加新配置)。