If you cannot download the zip file, perhaps you can follow some of the suggestions contained here . The idea is to create and load a script file that contains a Python shebang line (ignored by the interpreter) added to the zip file archive. You can then either directly interpret the Python interpreter or execute it from the shell. To make this work, you need to use at least Python 2.6.
zip testapp.zip *
echo '#!/usr/bin/env python' | cat - testapp.zip > testapp.py
chmod 755 testapp.py
For execution:
python testapp.py
or
./testapp.py
, , Python , , __main__.py __init__.py, __main__.py . kludge, , , , , . , Python zip-, .
POSIX, script, script.