1

新しいシェルで:

brew install python出力:

Warning: python-2.7.5 already installed

brew link python出力:

Warning: Already linked: /usr/local/Cellar/python/2.7.5
To relink: brew unlink python && brew link python

echo $PATH出力:

/Users/captbaritone/.rvm/gems/ruby-2.0.0-p0/bin:/Users/captbaritone/.rvm/gems/ruby-2.0.0-p0@global/bin:/Users/captbaritone/.rvm/rubies/ruby-2.0.0-p0/bin:/Users/captbaritone/.rvm/bin:/usr/local/bin:/usr/local/sbin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/X11/bin:/usr/local/git/bin:/usr/local/MacGPG2/bin:/usr/texbin:/opt/local/bin

それでもwhich pythonまだ出力します:

/usr/local/bin/python

それでもpython --version出力します:

Python 2.7.1

ここにリードがあります:

ls -l /usr/local/bin/python出力:

ls: /usr/local/bin/python: No such file or directory

私が間違っているかもしれないこと、または他に何を試すことができるかについてのアイデアはありますか?

4

1 に答える 1

4

Python を適切にリンクしていません。brew install pythonターミナルで入力すると、 Warning: python-2.7.5 already installed, it's just not linked と出力される場合があります

その場合は、 と入力して Python インストールをリンクする必要がありますbrew link python。以前のサイト パッケージが原因で競合が発生した場合は、 as と入力してbrew link --overwrite pythonください。

これで問題なく動作するはずです。

于 2013-10-10T07:02:02.847 に答える