Guest User

Untitled

a guest
Oct 18th, 2017
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.47 KB | None | 0 0
  1. pyinstaller main.spec
  2. 531 INFO: PyInstaller: 3.4.dev0+133d18156
  3. 531 INFO: Python: 3.6.2
  4. 531 INFO: Platform: Windows-10-10.0.15063-SP0
  5. 531 INFO: UPX is not available.
  6. 531 INFO: Extending PYTHONPATH with paths
  7. ['C:\Users\Charles\eclipse-workspace\algo2\src',
  8. 'C:\Users\Charles\eclipse-workspace\algo2\src']
  9. 531 INFO: checking Analysis
  10. 531 INFO: Building Analysis because out00-Analysis.toc is non existent
  11. 531 INFO: Initializing module dependency graph...
  12. 546 INFO: Initializing module graph hooks...
  13. 578 INFO: Analyzing base_library.zip ...
  14. 4672 INFO: Analyzing hidden import 'os'
  15. 4719 INFO: Analyzing hidden import 'stat'
  16. 4719 INFO: Analyzing hidden import 'ntpath'
  17. 4781 INFO: Analyzing hidden import 'genericpath'
  18. 4797 INFO: running Analysis out00-Analysis.toc
  19. 4812 INFO: Adding Microsoft.Windows.Common-Controls to dependent assemblies of final executable
  20. required by c:userscharlesanaconda3python.exe
  21. 5906 INFO: Caching module hooks...
  22. 5922 INFO: Analyzing main.py
  23. 5937 INFO: Loading module hooks...
  24. 5937 INFO: Loading module hook "hook-encodings.py"...
  25. 6078 INFO: Looking for ctypes DLLs
  26. 6078 INFO: Analyzing run-time hooks ...
  27. 6078 INFO: Looking for dynamic libraries
  28. 6078 INFO: Looking for eggs
  29. 6078 INFO: Using Python library c:userscharlesanaconda3python36.dll
  30. 6078 INFO: Found binding redirects:
  31. []
  32. 6109 INFO: Graph cross-reference written to C:UsersCharleseclipse-workspacealgo2srcbuildmainxref-main.html
  33. 6141 INFO: checking PYZ
  34. 6141 INFO: Building PYZ because out00-PYZ.toc is non existent
  35. 6141 INFO: Building PYZ (ZlibArchive) C:UsersCharleseclipse-workspacealgo2srcbuildmainout00-PYZ.pyz
  36. 6344 INFO: Building PYZ (ZlibArchive) C:UsersCharleseclipse-workspacealgo2srcbuildmainout00-PYZ.pyz completed successfully.
  37. 6344 INFO: checking PKG
  38. 6344 INFO: Building PKG because out00-PKG.toc is non existent
  39. 6344 INFO: Building PKG (CArchive) out00-PKG.pkg
  40. 6406 INFO: Building PKG (CArchive) out00-PKG.pkg completed successfully.
  41. 6422 INFO: Bootloader c:userscharlesanaconda3libsite-packagesPyInstallerbootloaderWindows-64bitrun_d.exe
  42. 6422 INFO: checking EXE
  43. 6422 INFO: Building EXE because out00-EXE.toc is non existent
  44. 6422 INFO: Building EXE from out00-EXE.toc
  45. 6422 INFO: Appending archive to EXE C:UsersCharleseclipse-workspacealgo2srcbuildmainmain.exe
  46. 6516 INFO: Building EXE from out00-EXE.toc completed successfully.
  47. 6531 INFO: checking COLLECT
  48. 6531 INFO: Building COLLECT because out00-COLLECT.toc is non existent
  49. 6547 INFO: Building COLLECT out00-COLLECT.toc
  50. 7359 INFO: Building COLLECT out00-COLLECT.toc completed successfully.
  51.  
  52. main.exe>log.txt
  53. [3912] PyInstaller Bootloader 3.x
  54. [3912] LOADER: executable is C:UsersCharleseclipse-workspacealgo2srcdistmainmain.exe
  55. [3912] LOADER: homepath is C:UsersCharleseclipse-workspacealgo2srcdistmain
  56. [3912] LOADER: _MEIPASS2 is NULL
  57. [3912] LOADER: archivename is C:UsersCharleseclipse-workspacealgo2srcdistmainmain.exe
  58. [3912] LOADER: No need to extract files to run; setting extractionpath to homepath
  59. [3912] LOADER: SetDllDirectory(C:UsersCharleseclipse-workspacealgo2srcdistmain)
  60. [3912] LOADER: Already in the child - running user's code.
  61. [3912] LOADER: Python library: C:UsersCharleseclipse-workspacealgo2srcdistmainpython36.dll
  62. [3912] LOADER: Loaded functions from Python library.
  63. [3912] LOADER: Manipulating environment (sys.path, sys.prefix)
  64. [3912] LOADER: Pre-init sys.path is C:UsersCharleseclipse-workspacealgo2srcdistmainbase_library.zip;C:UsersCharleseclipse-workspacealgo2srcdistmain
  65. [3912] LOADER: sys.prefix is C:UsersCharleseclipse-workspacealgo2srcdistmain
  66. [3912] LOADER: Setting runtime options
  67. [3912] LOADER: Initializing python
  68. [3912] LOADER: Overriding Python's sys.path
  69. [3912] LOADER: Post-init sys.path is C:UsersCharleseclipse-workspacealgo2srcdistmainbase_library.zip;C:UsersCharleseclipse-workspacealgo2srcdistmain
  70. [3912] LOADER: Setting sys.argv
  71. [3912] LOADER: setting sys._MEIPASS
  72. [3912] LOADER: importing modules from CArchive
  73. [3912] LOADER: extracted struct
  74. [3912] LOADER: callfunction returned...
  75. [3912] LOADER: extracted pyimod01_os_path
  76. [3912] LOADER: callfunction returned...
  77. [3912] LOADER: extracted pyimod02_archive
  78. [3912] LOADER: callfunction returned...
  79. [3912] LOADER: extracted pyimod03_importers
  80. [3912] LOADER: callfunction returned...
  81. [3912] LOADER: Installing PYZ archive with Python modules.
  82. [3912] LOADER: PYZ archive: out00-PYZ.pyz
  83. [3912] LOADER: Running pyiboot01_bootstrap.py
  84. [3912] LOADER: OK.
  85. [3912] LOADER: Cleaning up Python interpreter.
  86.  
  87. # -*- mode: python -*-
  88. import sys
  89.  
  90. block_cipher = None
  91.  
  92.  
  93. a = Analysis(['main.py'],
  94. pathex=['C:\Users\Charles\eclipse-workspace\algo2\src'],
  95. binaries=[],
  96. datas=[],
  97. hiddenimports=['os', 'stat', 'ntpath', 'genericpath'],
  98. hookspath=[],
  99. runtime_hooks=[],
  100. excludes=[],
  101. win_no_prefer_redirects=False,
  102. win_private_assemblies=False,
  103. cipher=block_cipher
  104. )
  105. pyz = PYZ(a.pure, a.zipped_data,
  106. cipher=block_cipher
  107. )
  108. exe = EXE(pyz,
  109. a.binaries + [('msvcp100.dll', 'C:\Windows\System32\msvcp100.dll', 'BINARY'),
  110. ('msvcr100.dll', 'C:\Windows\System32\msvcr100.dll', 'BINARY')]
  111. if sys.platform == 'win32' else a.binaries,
  112. exclude_binaries=True,
  113. name='main',
  114. debug=True,
  115. strip=False,
  116. upx=False,
  117. console=True )
  118. coll = COLLECT(exe,
  119. a.binaries,
  120. a.zipfiles,
  121. a.datas,
  122. strip=False,
  123. upx=False,
  124. name='main')
Add Comment
Please, Sign In to add comment