rocket357
Security freak
can you Upload Binary packages?
While python does "byte-compile" source files to speed things up a bit, Python doesn't have true binary executables (unless you run py2exe on them, which last I checked was windows-only). Python is much like Java in this respect, though gcj (Java compiler that compiles Java to machine code) is unix-only, last I checked.
I can include a convenience file in the top level-directory to launch the entire project if you'd like...though I've considered writing small C or C# programs to launch the project, I haven't decided on the route I'd like to go there, and I wasn't considering including a launcher until around GeoXPlanet-0.5.0. I'll speed up the process, though, since you've requested it.
for me,even /src/configGUI.py failed to start
This one was a definite bug. The script contained a faulty "standalone execution" routine that failed to start the configGUI.py file in "standalone" mode (Python files can be called from other Python files, in which case they run like a library, or they can be run by themselves, in which case they operate like a standalone script). The standalone code was faulty and wouldn't allow configGUI to launch as a standalone.
Fix will be included in 0.4.2.
Last edited: