Issue installing cayenne package via pip

Hi,

I wanted to start writing python code on my PI 4 Rasbian, but when I try to install the Cayenne package via pip I get the following error
pi@raspberrypi:~/code/alerts $ sudo pip3 install cayenne
Looking in indexes: Simple index, piwheels - Simple index
Collecting cayenne
Using cached https://www.piwheels.org/simple/cayenne/cayenne-1.0.3-cp37-cp37m-linux_armv7l.whl
Collecting antimony>=2.12 (from cayenne)
Could not find a version that satisfies the requirement antimony>=2.12 (from cayenne) (from versions: )
No matching distribution found for antimony>=2.12 (from cayenne)

My python version is
pi@raspberrypi:~/code/alerts $ python -V
Python 3.8.0

Any advice or suggestion is very welcome!

try

git clone https://github.com/myDevicesIoT/Cayenne-MQTT-Python
cd Cayenne-MQTT-Python
python3 setup.py install

This solved the issue, thanks for the great help!