2021-04-19

关于conda换源及查看环境变量

    • 换源
    • 环境变量

换源

(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 --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge 
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/msys2/

也可以使用别的镜像:
阿里云 http://mirrors.aliyun.com/pypi/simple/
中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple/
豆瓣(douban) http://pypi.douban.com/simple/
清华大学 https://pypi.tuna.tsinghua.edu.cn/simple/
中国科学技术大学 http://pypi.mirrors.ustc.edu.cn/simple/

(2)永久换源

pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple

(3)临时使用格式(豆瓣源挺好用):
pip install 库名==版本号 -i https://pypi.doubanio.com/simple

pip install scrapy -i https://pypi.tuna.tsinghua.edu.cn/simple

(4)查看当前源
用conda info命令查看conda信息,其中channel URLs就是当前源

环境变量

(1)在windows命令行中查看当前虚拟环境:

conda info -e
或
conda env list

(2)创建新的虚拟环境
命令创建python版本为X.X、名字为your_name的虚拟环境。your_name文件可以在Anaconda安装目录envs文件下找到。

conda create -n your_name python=X.X

(3)切换指定的虚拟环境

conda activate your_name

(4)退出当前虚拟环境,返回默认虚拟环境

conda deactivate your_name

(5)在指定环境下安装包

conda install -n your_name package_name

(6)在指定环境下删除包

conda remove -n your_name  package_name

(7)删除虚拟环境

conda remove -n your_name --all

你可能感兴趣的:(python,anaconda,python)