在python修改之后,echo $ PATH不反映我的bash_profile

时间:2017-01-10 00:31:14

标签: homebrew python-3.5 .bash-profile

我最近在/Users/tianhao下检查了我的.bash_profile,修改为以下内容:

# Setting PATH for Python 3.5
# The orginal version is saved in .bash_profile.pysave
# PATH="${PATH}"
# export PATH
# export PATH=’/usr/local/bin:/"
     

/Users/tianhaoxu/.bash_profile(END)

这与我的echo $PATH命令结果不匹配:

/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/opt/X11/bin

我想知道它为什么不匹配,所有的行都以#开头。我安装了自制的python3.5,当我运行brew doctor

时没有任何问题

提前谢谢!!!

1 个答案:

答案 0 :(得分:1)

正如Rober所说,#是评论,它不能设置路径,如果你想设置,你应该删除前面的#。我想

 "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/opt/X11/bin" 

由系统默认设置。举个例子,如果你想添加" home / tianhao / important / document"进入你的路径,你可以设置(不同的pathes应该用冒号分隔)

PATH=$PATH:home/tianhao/important/document
export PATH