0

My problem is that I can perfectly, in the ubuntu's terminal, type :

from PyQt4 import QtCore, QtGui

There are no errors.I think it means that python3.4 has all the modules I want.
However, when I type those lines in PyCharm (with the 3.4python interpreter) it tells me :QtGui is an unsolved reference.

It drives me crazy. Any ideas about the problem ? Thanks a lot.

kartikg3
  • 2,590
  • 1
  • 16
  • 23

1 Answers1

0

A workaround I used to prevent this was:

import PyQt4.QtGui as QtGui
import PyQt4.QtCore as QtCore
Stephen Rauch
  • 47,830
  • 31
  • 106
  • 135