Advertisement
gcman96

PyInstaller 2.0 console

Jan 3rd, 2013
148
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.28 KB | None | 0 0
  1. :python pyinstaller.py /Users/Nick/Desktop/Multiplication.py
  2. 121 INFO: wrote /Users/Nick/Desktop/Python/pyinstaller-2.0/Multiplication/Multiplication.spec
  3. 169 WARNING: You are running 64-bit Python: created binaries will only work on Mac OS X 10.6+.
  4. If you need 10.4-10.5 compatibility, run Python as a 32-bit binary with this command:
  5.  
  6. VERSIONER_PYTHON_PREFER_32_BIT=yes arch -i386 /Library/Frameworks/Python.framework/Versions/2.7/Resources/Python.app/Contents/MacOS/Python
  7.  
  8. 4308 INFO: UPX is not available.
  9. 5523 INFO: checking Analysis
  10. 5523 INFO: building Analysis because out00-Analysis.toc non existent
  11. 5523 INFO: running Analysis out00-Analysis.toc
  12. 5621 INFO: Analyzing /Users/Nick/Desktop/Python/pyinstaller-2.0/support/_pyi_bootstrap.py
  13. 6616 INFO: Analyzing /Users/Nick/Desktop/Python/pyinstaller-2.0/PyInstaller/loader/archive.py
  14. 6677 INFO: Analyzing /Users/Nick/Desktop/Python/pyinstaller-2.0/PyInstaller/loader/carchive.py
  15. 6738 INFO: Analyzing /Users/Nick/Desktop/Python/pyinstaller-2.0/PyInstaller/loader/iu.py
  16. 6758 INFO: Analyzing /Users/Nick/Desktop/Multiplication.py
  17. Traceback (most recent call last):
  18. File "pyinstaller.py", line 91, in <module>
  19. main()
  20. File "pyinstaller.py", line 86, in main
  21. run_build(opts, spec_file)
  22. File "pyinstaller.py", line 50, in run_build
  23. PyInstaller.build.main(spec_file, **opts.__dict__)
  24. File "/Users/Nick/Desktop/Python/pyinstaller-2.0/PyInstaller/build.py", line 1625, in main
  25. build(specfile, buildpath)
  26. File "/Users/Nick/Desktop/Python/pyinstaller-2.0/PyInstaller/build.py", line 1582, in build
  27. execfile(spec)
  28. File "/Users/Nick/Desktop/Python/pyinstaller-2.0/Multiplication/Multiplication.spec", line 5, in <module>
  29. hookspath=None)
  30. File "/Users/Nick/Desktop/Python/pyinstaller-2.0/PyInstaller/build.py", line 389, in __init__
  31. self.__postinit__()
  32. File "/Users/Nick/Desktop/Python/pyinstaller-2.0/PyInstaller/build.py", line 315, in __postinit__
  33. self.assemble()
  34. File "/Users/Nick/Desktop/Python/pyinstaller-2.0/PyInstaller/build.py", line 475, in assemble
  35. importTracker.analyze_script(script)
  36. File "/Users/Nick/Desktop/Python/pyinstaller-2.0/PyInstaller/depend/imptracker.py", line 199, in analyze_script
  37. co = compile(stuff, fnm, 'exec')
  38. TypeError: compile() expected string without null bytes
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement