Up until Anaconda3
(which contains Python 3.4
) was re-installed on my RedHat 6.5
workstation, I have been able to develop Python apps that use PyQT5
.
Post re-install of Anaconda
I receive an error message:
....could not find or load Qt platform plugin xcb
The only difference between Anaconda installs is the folder name: /usr/local/ananaconda3
vs /usr/local/anaconda_py3
I checked libqxcb.so
has no missing dependencies.
I rebuilt PyQT5
.
I tried explicitly adding location of site-packages
of PyQT5
:
import site
site.addsitedir("...path.../python3.4")
Any other suggestions?
How does re-installing Python
impact the use of PyQT5
?