Anaconda

作者: 异想派 | 来源:发表于2016-11-05 14:18 被阅读48次

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

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

相关文章

网友评论

      本文标题:Anaconda

      本文链接:https://www.haomeiwen.com/subject/iqqguttx.html