been scouring google for nearly a month now trying to find something.
now as the requirement grows, I need more help tryingto find something.
Portable Python is what I'm currently using, but alot of my developers (including myself) don't like the Wine wrapper...
Pyzo supports linux mac and win, but it's python34 meaning my PyOpenGL application will run slower.
anyone know where I could get portable python27 interpreters for all platforms??
the famous Why:
my program includes all of it's dependencies at those specific versions (because updates kill outdates)
so I don't want to have to force my users to have to download every dependency my program needs just to recieve an error because I'm using an outdated method or something.
not to mention, I've cleaned up my distro and it's dependencies so the amount of space taken is alot less than if you were to normally install it.
I'm basically trying to freeze my distro in it's time, I don't expect any outside dependencies except core dependencies, which updates there shouldn't break my distro.
and the other famous what about:
no I don't need to copy the dependencies between interpreters.
like I said I've cleaned it up, Portable Python only takes up 18MB of space while the Lib/ directory has been integrated with my program and added to the sys.path.
note: this means you can't import os
or any other module except sys
until the integrated directory is added to the path.
so...
what other interpreters are out there that meet my needs??
if somebody could build them, please do, I can't compile anything other than crummy C#... heh
(yes, I do follow the directions and everything, it doesn't matter what I do, it just won't compile)
^ just tried compiling native GLFW3 a while back and it wouldn't compile... so eventually I found a deb which installed a working binary.