virtualenv pip安装mysql python失败

virtualenv pip安装mysql python失败,python,installation,virtualenv,pip,mysql-python,Python,Installation,Virtualenv,Pip,Mysql Python,情况是,我希望使用virtualenv自动化部署过程。我在git存储库中有一个python项目。我用詹金斯把一切都自动化了。在jenkins构建中,我执行以下操作: 连接到远程测试服务器 创建一个空的virtualenv 下载我的项目(git克隆) 将依赖项-安装到virtualenv中 最后一步失败了。我有python 2.6.6。我运行。bin/activate进入virtualenv并运行pip install mysql python安装我的依赖项。以下是我得到的控制台输出: Dow

情况是,我希望使用virtualenv自动化部署过程。我在git存储库中有一个python项目。我用詹金斯把一切都自动化了。在jenkins构建中,我执行以下操作:

  • 连接到远程测试服务器
  • 创建一个空的virtualenv
  • 下载我的项目(git克隆)
  • 将依赖项-安装到virtualenv中
最后一步失败了。我有python 2.6.6。我运行
。bin/activate
进入virtualenv并运行
pip install mysql python
安装我的依赖项。以下是我得到的控制台输出:

Downloading/unpacking mysql-python
  Running setup.py (path:/var/www/_dev/ola_internal/build/mysql-python/setup.py) egg_info for package mysql-python
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,5,'final',1) -D__version__=1.2.5 -I/usr/include/mysql -I/usr/include/python2.6 -c _mysql.c -o build/temp.linux-x86_64-2.6/_mysql.o -g -fPIC -g -static-libgcc
 -fno-omit-frame-pointer -DPERCONA_INNODB_VERSION=rel31.1 -fPIC -g -static-libgcc -fno-omit-frame-pointer -fno-strict-aliasing -DMY_PTHREAD_FASTMUTEX=1
    _mysql.c:29:20: error: Python.h: No such file or directory
    _mysql.c:40:26: error: structmember.h: No such file or directory
    _mysql.c:74: error: expected '=', ',', ';', 'asm' or '__attribute__' before '*' token
    _mysql.c:75: error: expected '=', ',', ';', 'asm' or '__attribute__' before '*' token
    _mysql.c:76: error: expected '=', ',', ';', 'asm' or '__attribute__' before '*' token
    _mysql.c:77: error: expected '=', ',', ';', 'asm' or '__attribute__' before '*' token
这里有更多的C错误,我将省略

[...]
结局是这样的:

_mysql.c: In function 'DL_EXPORT':

_mysql.c:3058: error: expected declaration specifiers before 'init_mysql'

_mysql.c:3166: error: expected '{' at end of input

error: command 'gcc' failed with exit status 1

----------------------------------------
Cleaning up...
Command /var/www/_dev/ola_internal/bin/python -c "import setuptools, tokenize;__file__='/var/www/_dev/ola_internal/build/mysql-python/setup.py';exec(compile(getattr(tokenize, 'open', open)(__file__).read().replace('\r\n', '\n'), __file__, 'exec'))" install --record /tmp/pip-z0QiG8-record/install-record.txt --single-version-externally-managed --compile --install-headers /var/www/_dev/ola_internal/include/site/python2.6 failed with error code 1 in /var/www/_dev/ola_internal/build/mysql-python
Storing debug log for failure in /var/lib/jenkins/.pip/pip.log
这是怎么回事?这很奇怪,因为服务器上全局安装了MySQLdb:

jenkins@olamd:/var/www/_dev/ola_internal$ python
Python 2.6.6 (r266:84292, Dec 26 2010, 22:31:48) 
[GCC 4.4.5] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import MySQLdb
>>> MySQLdb.__version__
'1.2.2'
由于,我没有安装
python-dev
debian包:

sudo apt-get install python-dev