我的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”]

其他回答

此问题的原因是:

正在为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

我的修复是apt-install python3 dev

它帮助我遵循这里的指示:

https://packaging.python.org/guides/installing-using-linux-tools/

Debian/Ubuntu

Python 2:

sudo apt install python-pip

Python 3:

sudo apt install python3-venv python3-pip

我尝试了上面给出的pip安装轮子说明,但没有成功,因为我被告知已经满足了要求。事实证明,我使用的是python-3.9网站包中的python-3.10和pip。通过输入python-version和pip-version并比较目录,我终于意识到了这一点。

有了这一认识,我安装了一个新版本的pip来配合我的python-3.10,安装了轮子,一切都正常了。

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

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

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