无法通过Code Runner在MacOS上的Visual Studio Code上运行Python

r6vfmomb  于 2023-03-24  发布在  Python
关注(0)|答案(2)|浏览(392)

面临Vsc Code Runner的问题,无法使用Code Runner运行Python代码。单击“运行Python代码”按钮时工作正常
我收到错误

zsh: no such file or directory: /usr/local/bin/python3.9.2

我已经确定了错误,需要更改运行命令从

python -u

python3 -u

我该怎么做呢?

atmip9wb

atmip9wb1#

首先要确认你已经安装了python扩展,其次这应该是解释器路径识别错误导致的,可以手动修改,输入ctrl+shift+P,然后选择“python:select Interpreter”,检查Python解释器选择正确的,然后重新运行文件。

nxowjjhe

nxowjjhe2#

转到Code Runner扩展设置,在那里您会发现Code-runner:Executor Map现在点击其中的settings.json编辑,将"python": "python -u"替换为"python": "python3 -u"

相关问题