After some big frustration I did it! I converted my django app to an \"exe\" one to run as a single standalone app on windows (using cherrypy as a WSGI server) But When I tr
Here's The solution:
from distutils.core import setup import py2exe, sys, os sys.argv.append('py2exe') setup( options = {'py2exe': {'bundle_files': 3}}, windows = [{'script': "Your_App_Name.py"}], zipfile = None, )