On 64-bit Windows 7, with 64-bit Anaconda/Python, these two warnings/errors occur multiple times when creating a one-file .exe:
1020 WARNING: library python%s%s required via ctypes not found 1500 ERROR: Assembly amd64_Microsoft.VC90.CRT_1fc8b3b9a1e18e3b_9.0.21022.8_none not found The .exe is generated but fails to run (see below). This is similar to Issue#1093 (https://github.com/pyinstaller/pyinstaller/issues/1093). 1/ Is it safe to say that pyinstaller doesn't (yet) work for one-file on 64-bit Windows? Fyi, this is the Traceback on running the .exe: Traceback (most recent call last): File "<string>", line 32, in <module> File "c:\users\think\anaconda\lib\site-packages\PyInstaller-2.1-py2.7.egg\PyInstaller\loader\pyi_importers.py", line 270, in load_module exec(bytecode, module.__dict__) ... snip ... File "c:\users\think\anaconda\lib\site-packages\PyInstaller-2.1-py2.7.egg\PyInstaller\loader\pyi_importers.py", line 409, in load_module module = imp.load_module(fullname, fp, filename, self._c_ext_tuple) File "h5py\h5p.pxd", line 16, in init h5py.h5a (D:\Build\h5py\h5py-2.5.x\h5py\h5a.c:6548) File "c:\users\think\anaconda\lib\site-packages\PyInstaller-2.1-py2.7.egg\PyInstaller\loader\pyi_importers.py", line 409, in load_module module = imp.load_module(fullname, fp, filename, self._c_ext_tuple) File "h5py\h5ac.pxd", line 12, in init h5py.h5p (D:\Build\h5py\h5py-2.5.x\h5py\h5p.c:11575) ImportError: No module named h5ac 2/ Don't understand reference to D:\Build\h5py\... as there is no D:\ disk storage. -- 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.
