- 首先官网下载命令行安装脚本,然后运行
sh Anaconda3-2018.12-MacOSX-x86_64.sh
2.现在的版本安装时自动配好环境变量了,如果没有则打开~/.bash_profile
vim ~/.bash_profile
手动添加
export PATH="/Users/httbser/anaconda3/bin:$PATH"
保存后,source ~/.bash_profile
- 创建想要的python版本环境:
conda create -n python27 python=2.7
4.使用该环境:
conda activate python27 # python27为上面创建的环境名称
5.换回原环境:
conda deactivate