小编典典

为什么 python setup.py 在 Travis CI 上说无效命令“bdist_wheel”?

all

我的 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。


阅读 210

收藏
2022-03-02

共1个答案

小编典典

不得不安装wheel包。一切都是最新的,但仍然给出错误。

pip install wheel

然后

python setup.py bdist_wheel

工作没有问题。

2022-03-02