我是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来帮我解决这个问题吗?
由于
答案 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
基本上,您将包含所需可执行文件的目录放在一起,用':'
分隔