I’m a complete newbie with Python, and I need to use a program for one of my modding project.
The program is called “obj2bdl” and can convert .obj files into .bdl files, which are the model files that are used in the Super Mario Galaxy games on WII.
This tool only works with Python, it is pretty old (2013) and there is 0 documentation about it.
I just know that I need “PyQt4” to run it, so I’ve downloaded it and I typed this command:
python -c "import PyQt4
But when I run the program with IDLE Shell, I have this error:
cannot import name ‘QtGui’ from ‘PyQt4’
So I made researches, and it seems I need something else called “sip”. And when I search tutorials on how to install it, they talk to me like if I was an expert of Python xD
What do I need to install and where? Do I have to type specific commands? Do I need a specific version of PyQt4? I have no clue of what to do
Can you explain me with simple words how to fix my problem ?
As an IDLE maintainer, I quite support people using it for its intended purpose of learning Python and writing Python programs. But if you are not trying to edit obj2bdl and there is no issue of needing IDLE’s better non-ascii support, I agree with running directly from a command line. If you start IDLE normally, there should be no difference, but occasionally there is.