列举当前所有环境:
conda info --envs
创建环境:
conda create --name your_env_name python=3.5
进入某个环境:
source activate your_env_name
退出环境:
source deactivate
删除某个环境:
conda remove --name your_env_name --all
# 向当前环境安装包
scipyconda install scipy
# 向当前环境安装包 scipy 并指定版本
conda install scipy=0.15.0
# 删除当前环境中的scipy包
conda remove scipy
网友评论