2014-01-30 191 views
0

这种情况是我想使用virtualenv自动执行我的部署过程。我在一个git仓库中有一个python项目。我使用jenkins来自动化所有的东西。里面一个詹金斯建设,我做到以下几点:virtualenv pip安装mysql-python失败

  • 连接到远程测试服务器
  • 创建一个空的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的:

[email protected]:/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' 

回答

2

感谢this blog,它发生,我没有安装python-dev Debian软件包:

sudo apt-get install python-dev