Django プロジェクトの virtualenv をセットアップしようとしています。MySQL-python が必要です。Python 2.5 を使用する実稼働環境を複製しようとしています。私の Ubuntu デスクトップには Python 2.5 があります。で Python 2.5 virtualenv をインストールできvirtualenv --python=/usr/bin/python2.5 ...
ます。ただし、しようとするとpip install MySQL-python
、次の出力が得られます。
$ pip install MySQL-python
Downloading/unpacking MySQL-python
Running setup.py egg_info for package MySQL-python
warning: no files found matching 'MANIFEST'
warning: no files found matching 'ChangeLog'
warning: no files found matching 'GPL'
Installing collected packages: MySQL-python
Running setup.py install for MySQL-python
building '_mysql' extension
gcc -pthread -fno-strict-aliasing -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fPIC -Dversion_info=(1,2,3,'final',0) -D__version__=1.2.3 -I/usr/include/mysql -I/usr/include/python2.5 -c _mysql.c -o build/temp.linux-i686-2.5/_mysql.o -DBIG_JOINS=1 -fno-strict-aliasing -DUNIV_LINUX -DUNIV_LINUX
In file included from _mysql.c:29:
pymemcompat.h:10: fatal error: Python.h: No such file or directory
compilation terminated.
error: command 'gcc' failed with exit status 1
python-dev
Ubuntu deb パッケージをインストールしましたが、これは Python 2.6 用です。
他にどのようにMySQL-python
インストールできますか?