What I\'m trying to do is ship my code to a remote server, that may have different python version installed and/or may not have packages my app requires.
Right now t
You're probably looking for something like Freeze, which is able to compile your Python application with all its libraries into a static binary:
PyPi page of Freeze
Python Wiki page of Freeze
Sourceforge page of Freeze