1

我是 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),然后执行,就像在 windows 环境中通过指定 *.py 文件与 Python 的关联一样.

有人可以帮我用mac完成这个吗?

谢谢

4

1 回答 1

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

基本上,你把包含你想要的可执行文件的目录,用':'分隔

于 2013-01-03T14:26:57.720 回答