Windows XP users have been having trouble running python setup.py build, due to the Windows version of Cerealizer not having the attribute register_alias. The problem can be solved! Here’s how:
- Extract the archive (use 7-Zip ) to your python folder, so there is now, for example, python24/cerealizer
- In the Command Prompt, navigate to that folder, e.g. cd\ then cd c:\python24\cerealizer
- Run python setup.py build. This will create a new directory build/Lib/cerealizer in the python24/Cerealizer folder.
- Move that build/Lib/cerealizer folder to python24/Lib/, so the path is now e.g. C:\python24\Lib\cerealizer
And that’s it! The game should now run. Let me know if this helped you!
July 4, 2008 at 1:58 am
Come to think of it, you could run python setup.py install after python setup.py build, which should do the folder-moving work for you…
July 4, 2008 at 2:12 am
it fixed it