This is the third install of pyinstaller (the develop version) on a Windows 7 64-bit machine with Anaconda and the same problems keep appearing. All the latest releases of Anaconda and Python are being used. Note that my programs do not use PIL or pygments (buy maybe some imported packages call them).
1/ hook-PIL.py not found C:\Users\Think\Anaconda\lib\site-packages\pyinstaller-2.1.1.dev0-py2.7.egg\PyInstaller\hooks\hook-PIL.Image.py:14: RuntimeWarning: Parent module 'PyInstaller.hooks.hook-PIL' not found while handling absolute import from PyInstaller.hooks.shared_PIL_Image import * FIX: create hook-PIL.py #----------------------------------------------------------------------------- # Copyright (c) 2013, PyInstaller Development Team. # # Distributed under the terms of the GNU General Public License with exception # for distributing bootloader. # # The full license is in the file COPYING.txt, distributed with this software. #----------------------------------------------------------------------------- # empty (just to need Python import machinery happy) 2/ amd64_Microsoft.VC90.CRT not found INFO: Searching for assembly amd64_Microsoft.VC90.CRT_1fc8b3b9a1e18e3b_9.0.21022.8_none ... WARNING: Assembly not found FIX: Unknown What is the solution to this as it appears multiple times in the output? 3/ libzmq.pyd not found 37713 WARNING: lib not found: libzmq.pyd dependency of C:\Users\Think\Anaconda\lib\site-packages\zmq\backend\cython\error.pyd FIX: Unknown. This WARNING appears many times. The file libzmq.pyd does exist in the site-packages/zmq folder. 4/ hook-pygments.py not found C:\Users\Think\Anaconda\lib\site-packages\pyinstaller-2.1.1.dev0-py2.7.egg\PyInstaller\hooks\hook-pygments.formatters.py:10: RuntimeWarning: Parent module 'PyInstaller.hooks.hook-pygments' not found while handling absolute import from PyInstaller.hooks.hookutils import collect_submodules 23947 INFO: Processing hook hook-pygments.formatters C:\Users\Think\Anaconda\lib\site-packages\pyinstaller-2.1.1.dev0-py2.7.egg\PyInstaller\hooks\hook-pygments.lexers.py:10: RuntimeWarning: Parent module 'PyInstaller.hooks.hook-pygments' not found while handling absolute import from PyInstaller.hooks.hookutils import collect_submodules 24296 INFO: Processing hook hook-pygments.lexers C:\Users\Think\Anaconda\lib\site-packages\pyinstaller-2.1.1.dev0-py2.7.egg\PyInstaller\hooks\hook-pygments.styles.py:10: RuntimeWarning: Parent module 'PyInstaller.hooks.hook-pygments' not found while handling absolute import from PyInstaller.hooks.hookutils import collect_submodules FIX: Unknown 5/ Anaconda + pywintypes This is not a pyinstaller problem but will appear in the output as an Error. FIX: See https://github.com/ContinuumIO/anaconda-issues/issues/37 Copy all the DLL files from Anaconda\Lib\site-packages\pywin32_system32 to Anaconda\Lib\site-packages\win32\lib Thanks! -- You received this message because you are subscribed to the Google Groups "PyInstaller" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/pyinstaller. For more options, visit https://groups.google.com/d/optout.
