I’ve recently noticed an issue that I face as a begintermediate developer. If I am working on a feature that I have implemented many times before, and solved over and over, it is easy for me to Get the Thing Done, and implement the feature with little time or effort required. However, on the not-so-rare [...]
Category Archives: Uncategorized
PyQt4 and Py2App – Minor Notes
I ran into a number of problems with PyQt4, and py2app while making my first program (OS 10.6), that I had a hard time finding answers to If your program is crashing, check console if it says
1 |
error: argv-emulation is not supported for 64-bit executables |
then after generating the setup.py script for py2app, edit it to remove “’argv_emulation’: True”. (from py2exe website, [...]