VSCode 创建并使用虚拟环境

1 vs code创建并使用虚拟环境

安装:

pip install virtualenv

创建:

virtualenv xxx
or
virtualenv --system-site-packages xxx # 创建环境,继承原安装的模块

使用:

command+Shiht+P 搜索:Python: Select Interpreter 选择 xxx

退出:

deactivate

你可能感兴趣的:(文章)