Python Select Interpreter in Vscode

建议点击 查看原文 查看最新内容。

原文链接: https://typonotes.com/posts/2024/12/02/python-select-interpreter-in-vscode/

python 中提供了两种方式执行运行版本

选择默认 Python 版本

Mac Command + Shift + P -> Python: Select Interpreter

配置默认版本

打开 settings.json

1
    "python.defaultInterpreterPath": "/usr/bin/python3",

或在 settings 中搜索 python default Interpreter Path

创建虚拟环境 .venv.conda

Mac Command + Shift + P -> Python: Create Environment

选择 .venv.conda 管理虚拟环境

更多参考 VsCode 官方文档 Create Environment