PyCharm 使用 Anaconda 管理多版本 Python 环境
目录
安装完 anaconda 后,打开 Anaconda Powershell Prompt (anaconda3) 执行命令。
一、Anaconda
# 查看 conda 版本号
conda --version
# 查看系统当前已有的 Python 环境
conda info --envs
# 添加一个名为 python27,Python 版本为 2.7 的环境
conda create --name python27 python=2.7
# 查看当前环境的 Python 版本
python --version
# 切换 Python 环境到刚才新添加的 Python2.7
conda activate python27
# 切回原来的 Python 环境
conda deactivate python27
# 或
conda activate base
# 删除 python27 这个环境
conda remove --name python27 --all
# 添加清华源
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
# 查看镜像列表
conda config --show channels
# 删除某个镜像
conda config --remove channels #如:https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/
# 包管理
conda install <包名> 安装指定包
conda remove <包名> 移除指定包
conda update <包名> 更新指定包