Mein Python-Paket hat eine, setup.py
die lokal auf Ubuntu Trusty und auf einer neuen Vagrant Ubuntu Trusty-VM gut funktioniert, wenn ich sie wie folgt bereitstelle:
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
Aber wenn ich dasselbe auf einer Travis CI Trusty Beta-VM mache:
- 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
Ich bekomme:
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'
Das Warum kann ich nicht ein Rad in Python erstellen? ist verwandt, aber beachten Sie, dass ich Rad installiere und Setuptools aktualisiere.