You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
使用 Python venv 创建一个虚拟环境:
您应该看到一个名为 venv的目录。您可以使用activate和deactivate命令来控制进入和退出您的虚拟环境:
您可以通过运行 which python 命令来检测虚拟环境是否被激活:如果它指向虚拟环境,那么您已经成功激活了它!
如果需要安装指定python版本虚拟环境:
conda create --name myenv python=3.9 anaconda
conda activate xxxx/envs/myenv
Beta Was this translation helpful? Give feedback.
All reactions