一、常用命令
1.1 查看当前conda所有环境
conda info --envs
1.2 创建新环境
conda create -n 环境名 python=x.x
1.3 进入你的环境
Conda activate 环境名
Source activate 环境名
activate + 环境名
1.4 查看当前环境中的包
Conda list
pip list
1.5 在你的环境中安装包
Conda install 包名称
或者pip install 包名称 -i https://pypi.tuna.tsinghua.edu.cn/simple(清华镜像)
或者pip install 包名称 -i https://pypi.doubanio.com/simple/ (豆瓣镜像)
1.6 退出当前环境
deactivate 环境名
1.7 删除环境
conda remove -n 环境名 --all
二、其他
2.1 配置下载源(清华镜像)
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/
conda config --set show_channel_urls yes
2.2 在环境中运行python程序
2.2.1 切换目录到文件所在目录
①切换到所在盘
如 D:
②盘内切换目录
如 cd D:\exp 切换到exp目录
③切换到.py程序所在目录后,输入python +文件名,如python test.py