gpt4 book ai didi

python - 在 Mac OS X 上使用 Python3 和 Visual Studio Code - 不工作

转载 作者:行者123 更新时间:2023-12-03 14:04:08 27 4
gpt4 key购买 nike

在调试它继续使用 Python2 时,我似乎无法让 Python3 工作。我已经尝试了一些东西,但仍然无法让它工作。我验证了 Python3s 路径是/usr/local/bin/python3
每次我运行脚本时

import sys
print(sys.version)

我仍然得到 2.7.10
python 3 已安装并正常工作。

我的launch.json和settings.json中有这个(类型和请求在launch.json中由于某种原因都变灰了)
 {
"name": "Python",
"type": "python",
"request": "launch",
"stopOnEntry": true,
"program": "${file}",
"pythonPath": "/usr/local/bin/python3",
"debugOptions": [
"WaitOnAbnormalExit",
"WaitOnNormalExit",
"RedirectOutput"
] }

最佳答案

要选择特定的 Python 解释器,请调用 Python:选择解释器 来自 的命令命令面板 (⇧⌘P) .

enter image description here

这将更新您的 .vscode/settings.json 文件:

{
"python.pythonPath": "/usr/local/bin/python3"
}

然后,您应该能够使用 python 3 解释器或您的机器上可用的任何其他 python 解释器进行调试。

关于python - 在 Mac OS X 上使用 Python3 和 Visual Studio Code - 不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44361780/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com