使用 virtualenv 为不同 python 版本安装 Egg 时出错
我无法安装将 virtualenv 设置为不同 python 版本的软件包。这是我的$:
$ sudo apt-get install python-setuptools python-dev build-essential
$ sudo easy_install -U pip
$ sudo virtualenv --no-site-packages --distribute --python=/usr/bin/python2.6 pootle
$ cd pootle
$ sudo pip install mysql-python
其中,这里有错误:
pymemcompat.h:10:20: fatal error: Python.h: File o directory non esistente
没有问题,实际上,使用我的系统(2.7)ubuntu上安装的默认版本的python
I'm not able to install packages with a virtualenv set to a different python version. Here's my $:
$ sudo apt-get install python-setuptools python-dev build-essential
$ sudo easy_install -U pip
$ sudo virtualenv --no-site-packages --distribute --python=/usr/bin/python2.6 pootle
$ cd pootle
$ sudo pip install mysql-python
Among others, here the error:
pymemcompat.h:10:20: fatal error: Python.h: File o directory non esistente
No problems, actually, using the default version of python installed on my system (2.7)ubuntu
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
$ sudo apt-get install python2.6-dev
$ sudo apt-get install python2.6-dev