Patryk
Patryk

Reputation: 21

Python.exe stops working as soon as I import any PyQt5 module

I am working on a windows amd64 machine with all the latest anaconda packages; In an attempt to solve this problem I went and updated them all with conda update --all to be sure, but the issue is still present.

As I understand it, PyQt5 is included in the latest anaconda packages, but I haven't found many topics on similar issues, and the solutions I tried didnt work. I tried running pyuic5 too, which comes included with anaconda and depends on PyQt, and it crashes python instantly.

Here's the output of conda list qt:

pyqt                      5.6.0                    py35_2
PyQt5                     5.8.2                     <pip>
qt                        5.6.2                    vc14_3  [vc14]
qtawesome                 0.4.4                    py35_0
qtconsole                 4.3.0                    py35_0
qtpy                      1.2.1                    py35_0

Upvotes: 2

Views: 605

Answers (1)

Ayman Magedy
Ayman Magedy

Reputation: 71

Reinstalling Anaconda or in my case removing it solved the issue.

Confirmed @ win 10 x 64, python 3.6.1 , MiniAnaconda

Upvotes: 1

Related Questions