import numpy
When I packed above one line of the script as one executable window application using py2exe , after starting I get the following warnings.
OMP: Warning
OMP: System error
This warning occurs only when I build as one executable file (i.e. only with bundle_files = 1). Here is my setup.py for this.
from distutils.core import setup
import py2exe
setup(
options = {'py2exe': {'bundle_files': 1}},
windows=['testnumpy.py'],
zipfile = None,
)
This issue started with numpy 1.8.0. When I return to 1.6.2, warnings will not appear.
Typically, a single executable file packed with py2exe will capture warnings and traces and save them to a log file. But for some reason, these warnings are not fixed, and the application creates a console window to display the warning. I want to suppress this additional console window so that it appears.
?
( ):