error: invalid command ‘bdist_wheel’

Written by Yujin Boby

Edit in WordPress

When installing a python module on Ubuntu, I got the following error message

error: invalid command 'bdist_wheel'

The error is fixed by installing

apt install -y python3-dev libpq-dev python3-wheel gcc
pip3 install wheel

Back to Errors