使い方を学んだばかりでvirtualenv
、Django 1.4.5 をインストールしました。virtualenv
Django 1.4.5 がインストールされているので、作業するための白紙の状態が作成されたと想定しているため、以前のファイルをすべてvirtualenv
環境にコピーしました。
サーバーを実行しようとしましたが、エラーが発生しました"no module named MySQLdb"
。これは、MySQL-python をインストールするのを忘れていたことを意味していると思います。経由でインストールしようとしました
pip install MySQL-python
しかし、私はこのエラーが発生します
Downloading/unpacking MySQL-python
Running setup.py egg_info for package MySQL-python
The required version of distribute (>=0.6.28) is not available,
and can't be installed while this script is running. Please
install a more recent version first, using
'easy_install -U distribute'.
(Currently using distribute 0.6.24 (/home/bradford/Development/Django/django_1.4.5/lib/python2.7/site-packages/distribute-0.6.24-py2.7.egg))
Complete output from command python setup.py egg_info:
The required version of distribute (>=0.6.28) is not available,
and can't be installed while this script is running. Please
install a more recent version first, using
'easy_install -U distribute'.
(Currently using distribute 0.6.24 (/home/bradford/Development/Django/django_1.4.5/lib/python2.7/site-packages/distribute-0.6.24-py2.7.egg))
----------------------------------------
Command python setup.py egg_info failed with error code 2 in /home/bradford/Development/Django/django_1.4.5/build/MySQL-python
この問題を解決する方法がよくわかりません =/ どんな助けでも大歓迎です!