- install/uninstall
http://conda.pydata.org/docs/install/full.html
http://stackoverflow.com/questions/22585235/python-anaconda-how-to-safely-uninstall - 命令行启用Anaconda Navigator
anaconda-navigator
https://docs.continuum.io/anaconda/navigator.html
- python获取环境变量
import os #python导入os模块
os.environ #查看操作系统中定义的环境变量
os.getenv('PATH') #获取某个环境变量的值
http://www.liaoxuefeng.com/wiki/001374738125095c955c1e6d8bb493182103fac9270762a000/0013868321590543ff305fb9f9949f08d760883cc243812000
-
Mac OS增删环境变量
1 . 首先查看shell版本
echo $SHELL #Mac OS X 10.3之后默认的是Bourne Shell
2 . 针对Bourne Shell添加环境变量
- 打开~/.bash_profile 文件
touch ~/.bash_profile
open -t ~/.bash_profile
- 新增环境变量
export PATH="$HOME/.rbenv/bin:$PATH"
- 让配置生效
source ~/.bash_profile