HomebrewのPythonを、pip、virtualenv、virtualenvwrapperなどと一緒に正しくインストールするための決定的なガイドはありますか?
私は次のページを読みました:
https://github.com/mxcl/homebrew/wiki/Homebrew-and-Python
http://osxastrotricks.wordpress.com/2012/05/02/python-setup-with-homebrew/
http://skipperkongen.dk / 2011/11/13 / installing-django-in-virtual-environment-on-mac /
http://www.thisisthegreenroom.com/2011/installing-python-numpy-scipy-matplotlib-and-ipython-on-lion /
http://youshoulddoityourself.blogspot.com.au/2010/11/test.html
OSX 10.8(Mountain Lion)DP3を使用しており、XCodeコマンドラインツールをインストールしました。
念のため、XQuartzもインストールしました(10.8では提供されていません)。
次に実行しました:
brew install python --universal --framework
私は自分に以下を追加しました~/.bash_profile
:
export PATH="/usr/local/bin:/usr/local/share/python:${PATH}"
次に実行しました:
sudo easy_install pip
うまくいったようです。
pipがインストールされている場所を確認します。
Victors-MacBook-Pro:~ victorhooi$ which pip
/usr/local/bin/pip
ただし、インストールパッケージをpipしようとすると、/ Library / Python / 2.7/site-packagesに書き込めないというエラーが表示されます。
running install_lib
creating /Library/Python/2.7/site-packages/yolk
error: could not create '/Library/Python/2.7/site-packages/yolk': Permission denied
----------------------------------------
Command /usr/bin/python -c "import setuptools;__file__='/Users/victorhooi/build/yolk/setup.py';exec(compile(open(__file__).read().replace('\r\n', '\n'), __file__, 'exec'))" install --single-version-externally-managed --record /var/folders/gg/m37t1rkx4zj7z54ls487jfc40000gn/T/pip-ap7LSB-record/install-record.txt failed with error code 1 in /Users/victorhooi/build/yolk
Storing complete log in /Users/victorhooi/Library/Logs/pip.log
私の理解では、HomebrewのPythonは独自のサイトパッケージにインストールされ、ファイルシステムツリー全体で奇妙なchownを実行する必要はありませんか?
乾杯、ビクター