Reputation: 1
Currently i'm working on a python-based Qt project in Raspberry Pi 4, using RTL-SDR and Neo GPS module. I was suggested to install pyrtlsdr and pyserial in order to read those devices, but the rpi OS doesn't allow me to do so. Hence, i created a virtual environment for these packages, and it worked, but not the Qt libraries. I tried to install PyQt and Sip packages from source inside the environment ( Sip is needed to link Qt to PyQt ), but it didn't recognize Sip. Does anyone know about this ?
so i tried to install through pip install PyQt5
, but the system got lagged on preparing metadata.
i also tried to use vext.pyqt5, but the safe_load() function in yaml doesn't exist so the system used replacements, and it seems to be the error.
finally, i tried to build everything from source. So from what i read, i should install sip and pyqt5. I chose sip 6.8.3 and pyqt5 5.15.10 for this work, and i got the result like the question.
in detail, after installing:
python setup.py install
Upvotes: 0
Views: 142