0

私はmacportsで何度も試みた後、Macを使用しています。通常のpythonパスに切り替えることにしたので、今私のpythonパスは

/Library/Frameworks/Python.framework/Versions/2.7/bin/python

しかし、django をインストールするとき、Mac は Apple がインストールした python を使用します。easy_install に、apple のインストール python ではなく、上記の python パスを使用するように指示するにはどうすればよいですか。

[~/mysite/djangosite]$sudo easy_install django==1.5
Searching for django==1.5
Best match: Django 1.5
Processing Django-1.5-py2.6.egg
Django 1.5 is already the active version in easy-install.pth
Installing django-admin.py script to /usr/local/bin

Using /Library/Python/2.6/site-packages/Django-1.5-py2.6.egg
Processing dependencies for django==1.5
Finished processing dependencies for django==1.5
anu@localhost:[~/mysite/djangosite]$which python
/Library/Frameworks/Python.framework/Versions/2.7/bin/python

easy_installeasy_installが使用されているかを確認するためにどれを試してみましたが、easy_install/usr/bin/easy_installも確認するために中/Library/Frameworks/Python.framework/Versions/2.7/binに入りましたが、そこにeasy_installが見つかりません..

localhost:[/Library/Frameworks/Python.framework/Versions/2.7/bin]$ls
2to3            idle2           pydoc2.7        python2         python2.7-32        pythonw2        smtpd.py
2to3-2          idle2.7         python          python2-32      python2.7-config    pythonw2-32     smtpd2.7.py
2to3-2.7        pydoc           python-32       python2-config      pythonw         pythonw2.7      smtpd2.py
idle            pydoc2          python-config       python2.7       pythonw-32      pythonw2.7-32

/Library/Frameworks/Python.framework/Versions/2.7/bin/easy_install*何も与えない、

4

1 に答える 1

0

awhich easy_installを実行して、 の下にあるものを取得するか、そのディレクトリ/Library/Frameworks/Python.framework/Versions/2.7/binの下で を直接実行してください。easy_installその後、必要なディレクトリにdjangoをインストールする必要があります。

于 2013-03-24T02:45:13.730 に答える