내 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'
이것은 왜 파이썬에서 바퀴를 만들 수 없습니까? 관련되어 있지만 휠을 설치하고 setuptools를 업그레이드하고 있습니다.