Is there a special setup needed to run a gui application from the command line (i.e. python pyqtapp.py) ?
When I run it from the dos prompt it complains about the modules in my .py file.. like 'no module named winreg'. Yet it executes fine under Idle.
It seems like it's a path issue, but the Windows enviroment path is set correctly.. especially since I have no problem running the script from within the IDLE ide. I know I should probably be using a more professional IDE like pycharm, but IDLE seems to work well enough so I haven't changed.. Unless it's CAUSING an issue with the command line working?
What could cause this?