如何修改我的.bash_profile文件,以便我可以运行我的python脚本而无需键入文件的路径?

时间:2013-01-03 14:24:03

标签: python osx-lion epd-python

我是OSX的新手,熟悉此环境中的文件结构。我的.bash_profile文件如下所示:

# Setting PATH for EPD_free-7.3-2
# The orginal version is saved in .bash_profile.pysave
PATH="/Library/Frameworks/Python.framework/Versions/Current/bin:${PATH}"
export PATH

我的脚本位于多个目录中,例如:

/Users/LMS/Documents/pydata-book
/Users/LMS/Documents/python_scripts

我想要做的是打开我的终端,键入脚本的名称(例如myscript.py),然后执行,就像通过使用Python指定* .py文件的关联一样。一个Windows环境。

那里的任何人都可以用mac来帮我解决这个问题吗?

由于

1 个答案:

答案 0 :(得分:3)

尝试将其放入.bash_profile中:

# Setting PATH for EPD_free-7.3-2
# The orginal version is saved in .bash_profile.pysave
PATH="/Library/Frameworks/Python.framework/Versions/Current/bin:/Users/LMS/Documents/pydata-book:/Users/LMS/Documents/python_scripts:${PATH}"

export PATH

基本上,您将包含所需可执行文件的目录放在一起,用':'

分隔