我的Python包有一个setup.py,它在Ubuntu Trusty和一个新的Vagrant Ubuntu Trusty VM上本地构建得很好

sudo apt-get install python python-dev --force-yes --assume-yes --fix-broken
curl --silent --show-error --retry 5 https://bootstrap.pypa.io/get-pip.py | sudo python2.7
sudo -H pip install setuptools wheel virtualenv --upgrade

但当我在Travis CI Trusty Beta VM上做同样的操作时:

- sudo apt-get install python python-dev --force-yes --assume-yes --fix-broken
- curl --silent --show-error --retry 5 https://bootstrap.pypa.io/get-pip.py | sudo python2.7
- sudo -H pip install setuptools wheel virtualenv --upgrade

我得到:

python2.7 setup.py bdist_wheel
usage: setup.py [global_opts] cmd1 [cmd1_opts] [cmd2 [cmd2_opts] ...]
   or: setup.py --help [cmd1 cmd2 ...]
   or: setup.py --help-commands
   or: setup.py cmd --help
error: invalid command 'bdist_wheel'

这为什么我不能在python中创建轮子?是相关的,但请注意,我正在安装轮子并升级setuptools。


当前回答

我在Ubuntu中安装了python3dev,并在setup.py中添加了setup_requires=[“wheel”]

其他回答

使用Ubuntu 18.04,这个问题可以通过安装python3 wheel包来解决。

通常,这是作为任何Python包的依赖项安装的。但尤其是在构建您经常使用的容器映像时,不建议安装,因此它经常丢失,必须首先手动安装。

如果已经安装了所有必需的模块,则可能需要在setup.py文件中导入setuptools模块。所以只需在setup.py文件的开头添加以下行。

import setuptools
from distutils.core import setup
# other imports and setups

车轮文档中也提到了这一点。https://wheel.readthedocs.io/en/stable/#usage

这个错误很奇怪,因为许多人都提出了答案,但得到的解决方案却不尽相同。我试过了,加上它们。直到我添加了pip安装时,升级pip才为我消除了错误。但我没有时间隔离哪个是哪个,所以这只是fyi。

正如@Philippe Remy所提到的,应从setuptools导入

from setuptools import setup

参考:官方文件https://setuptools.pypa.io/en/latest/index.html

此问题的原因是:

正在为Python 2.7安装旧版本的pip(6.1.1)安装在Trusty Beta映像上的Python 2.7的多个副本Python 2.7用于sudo的不同位置

这一切都有点复杂,在这里解释得更好https://github.com/travis-ci/travis-ci/issues/4989.

我的解决方案是使用用户travis而不是sudo进行安装:

- pip2.7 install --upgrade --user travis pip setuptools wheel virtualenv