Hi all,
I Try to use installer for the following simple script .
#!/usr/bin/env python
#main.py
if __name__=="__main__":
print "hello"
this is my .bat file to make the spec file and build the exe
rem create spec file build.dat
set surceFolder=C:\Users\mboscolo\Desktop\R38\test\PyInstaller
set surceFile=test
set pyInstallerDir=C:\Users\mboscolo\Desktop\R38\pyinstaller-trunk\
set applicaionName=test
echo build with pyInstaller
echo Create spec File
python %pyInstallerDir%\Makespec.py -d -n %applicaionName% -o
%surceFolder% %surceFolder%\%surceFile%.py
echo build exe
python %pyInstallerDir%\Build.py %surceFolder%\%surceFile%.spec
echo end script
when I run the test.exe file a pop-up windows appear and tells me that
test.exe has sopped working and windows is checking for a solutions.
I'm on windows 7 64Bit
What I did wrong?
Thanks
Matteo
--
You received this message because you are subscribed to the Google Groups
"PyInstaller" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/pyinstaller?hl=en.