conda env list or conda info -e
conda create -n 环境名 python=x.x
source activate 环境名
activate 环境名
conda install -n 环境名 包名
conda remove --name 环境名 包名
source deactivate 环境名
deactiavte 环境名
conda remove -n 环境名 --all
1. 恢复配置
codna config --remove-key channels
2. 在配置镜像
conda config --add channels https://repo.continuum.io/pkgs/free/
conda config --add channels https://repo.continuum.io/pkgs/main/
conda config --set show_channel_urls yes
3.查看配置信息
conda config --show channels
阿里云 http://mirrors.aliyun.com/pypi/simple/
中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple/
豆瓣 http://pypi.douban.com/simple/
清华大学 https://pypi.tuna.tsinghua.edu.cn/simple/
中国科学技术大学 http://pypi.mirrors.ustc.edu.cn/simple/
安装包的正确写法
临时使用:
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple + 包名
永久使用:
pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple