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 に答える