Hi @lrunge
Here are the most common causes for this error:
- A required build tool is missing.
- The package doesn’t support the operating system you’re using.
- The package doesn’t support the latest Python version.
The v 0.27.1 requires a minimum python v 3.7.1, can you confirm you’re on a supported version?
Upgrade your versions of pip
, setuptools
and wheel
using the following:
pip install wheel setuptools pip --upgrade
pip3 install wheel setuptools pip --upgrade
# if you don't have pip in your PATH environment variable
python -m pip install wheel setuptools pip --upgrade
python3 -m pip install wheel setuptools pip --upgrade
py -m pip install wheel setuptools pip --upgrade