Why is python setup.py saying invalid command ‘bdist_wheel’ on Travis CI?

Had to install the wheel package. Everything was up to date but still giving the error.

pip install wheel

then

python setup.py bdist_wheel 

Worked without issues.

Leave a Comment