我的Python包有一个setup.py
,当我像这样配置它时,它可以在Ubuntu Trusty和一个新的Vag犯人Ubuntu Trusty VM上本地构建良好:
sudo apt-get install python python-dev --force-yes --assume-yes --fix-brokencurl --silent --show-error --retry 5 https://bootstrap.pypa.io/get-pip.py | sudo python2.7sudo -H pip install setuptools wheel virtualenv --upgrade
但是,当我在Travis CI Trusted 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_wheelusage: setup.py [global_opts] cmd1 [cmd1_opts] [cmd2 [cmd2_opts] ...]or: setup.py --help [cmd1 cmd2 ...]or: setup.py --help-commandsor: setup.py cmd --helperror: invalid command 'bdist_wheel'
这个为什么我不能在python中创建一个轮子?是相关的,但请注意,我正在安装轮子和升级setupols。