Difference between revisions of "Py2exe"

From emboxit
Jump to: navigation, search
 
m (1 revision)
 
(No difference)

Latest revision as of 16:51, 11 September 2015


  • File setup.py contains:

<python> from distutils.core import setup import py2exe

  1. setup(console=['bcl.py']) #with black-console window while application is running

setup(windows=['bcl.py']) #no console </python>

  • And is called from command prompt like this

<python> setup.py py2exe </python> File:Py2exe-1.jpg