Skip to content Skip to sidebar Skip to footer

Installing Cwiid With Python 3 Extension

I'm trying to download and install the cwiid package with extension for the Raspberry Pi 3B+. But I keep getting this error. pi@raspberrypi:~ $ sudo pip3 install cwiid Collecting

Solution 1:

It looks like you are missing the cwiid headers. Try installing them using

sudo apt-get install libcwiid1 libcwiid1-dev

and rerun your pip3 command.

Post a Comment for "Installing Cwiid With Python 3 Extension"