Ho provato di tutto in questa domanda molto relativa: Why can I not create a wheel in python?non può costruire ruote - Errore: non valido comando 'bdist_wheel'
Ma ho ancora:
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'
Contesto:
$ pip --version
pip 8.1.1 from /home/bdillman/proj/fashion/lib/python3.5/site-packages (python 3.5)
$ python -c "import setuptools; print(setuptools.__version__)"
18.2
$ python --version
Python 3.5.1
$ which python
/home/bdillman/workspace/fashion/bin/python
$ pip list
Mako (1.0.4)
MarkupSafe (0.23)
peewee (2.8.0)
pip (8.1.1)
PyYAML (3.11)
setuptools (21.0.0)
wheel (0.29.0)
Quindi sembra che tutto sia installato e le versioni sembrano buone (credo). Qualcuno ha idee su cose da controllare per approfondire la diagnosi qui?
Il comando esatto è:
$ python setup.py bdist_wheel
Ho anche provato
$ sudo python setup.py bdist_wheel
Ho anche fatto pip install --upgrade setuptools
e pip install --upgrade wheel
, e loro sono up-to-date.
Qual è il comando esatto che stai utilizzando per creare il file wheel? – linusg
Ah, e magari aggiornando pip, wheel e setuptools ('pip install --upgrade setuptools' ecc.)! – linusg
Aggiunte le informazioni alla domanda. Ho provato tutte le cose elencate nella domanda collegata, ma senza successo. Deve essere qualcos'altro. –