Sorry if this isn't the right place for this type of question (I'm pretty new to Python). If there is a better venue for this kind of thing, please let me know:
I tried to run a few PyQwt demo, but it complained that there was no module named PyQt4. I thought the Enthought Python Distribution for Windows had nearly everything, but I guess it doesn't include that. So I installed PyQt4 using:
http://www.riverbankcomputing.co.uk/static/Downloads/PyQt4/PyQt-Py2.5-gpl-4.4.3-1.exe
On the riverbank download page it also suggests that I may need to install the MSVC2008 C++ runtime DLLs from here:
Unfortunately I couldn't do that since that link they provided is dead.
Now when I try to run the demos, I get the error:
Traceback
File "xxxx.py" , line 14, in <module>
import PyQt4.Qwt5 as Qwt
ImportError: No module named Qwt5
I have no idea where this module is supposed to come from, so I figured it may be because I didn't download the DLL's mentioned above. So I did a google search for qwt5.dll, which I found and downloaded (size 630,272). I don't know exactly where to put this file however. I tried putting it in various obvious places to no effect. Still get the same error. ... Perhaps this is not really the missing file, or I have the wrong file, or I put it in the wrong place, ... or probably something I haven't even thought of yet.
Any help would be appreciated.
Thanks
~Paul