Issue
I used the windows installer executable to install pyQt4, but i can't seem to import PyQt4 in my console window (command window).
I run the command "import pyqt4" and get the error "ImportError: No module named pyqt4"
I was able to run the above command for pyodbc and panda with no problems after installing them using their respective windows installers.
any clues??
sorry if i'm missing something obvious - i'm a beginner here
Solution
The module's name is case sensitive, so instead of
import pyqt4
you need to write
import PyQt4
Answered By - Carlos Cordoba
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.