Conda常用命令 Zoe 2023-08-17 命令查询 1 查看版本 1conda --version 2 虚拟环境 12conda info -e # 显示所有虚拟环境conda create -n your_env_name python=x.x # 创建虚拟环境 3 使用代理 12conda config --set proxy_servers.http http://127.0.0.1:7890conda config --set proxy_servers.https https://127.0.0.1:7890