The problem was caused by Python Imaging Library v. 1.1.7, which I installed from their executable. See the comment to the question at http://stackoverflow.com/questions/10448600/vc90-debugcrt-not-found-by-pyinstaller. I built PIL from source and that fixed the problem.
On May 4, 9:02 am, Brian <[email protected]> wrote: > I do have C:\Windows\winsxs > \x86_microsoft.vc90.debugcrt_1fc8b3b9a1e18e3b_9.0.30729.1_none_bb1f6aa1308c > 35eb > on my computer, with mscvm90d.dll, mscvp90d.dll, and mscvr90d.dll in > it. Why is PyInstaller looking for something with a slightly different > name? > > On May 4, 7:30 am, Brian <[email protected]> wrote: > > > > > > > > > In the process of building an application with PyInstaller, I see this > > in the output: > > > INFO: Hidden import 'encodings' has been found otherwise > > INFO: Adding Microsoft.VC90.CRT to dependent assemblies of final > > executable > > INFO: Searching for assembly > > x86_Microsoft.VC90.CRT_1fc8b3b9a1e18e3b_9.0.21022.8_none ... > > INFO: Found manifest C:\windows\WinSxS\Manifests > > \x86_microsoft.vc90.crt_1fc8b3b9a1e18e3b_9.0.21022.8_none_bcb86ed6ac711f91. > > manifest > > INFO: Searching for file msvcr90.dll > > INFO: Found file C:\windows\WinSxS > > \x86_microsoft.vc90.crt_1fc8b3b9a1e18e3b_9.0.21022.8_none_bcb86ed6ac711f91\ > > msvcr90.dll > > INFO: Searching for file msvcp90.dll > > INFO: Found file C:\windows\WinSxS > > \x86_microsoft.vc90.crt_1fc8b3b9a1e18e3b_9.0.21022.8_none_bcb86ed6ac711f91\ > > msvcp90.dll > > INFO: Searching for file msvcm90.dll > > INFO: Found file C:\windows\WinSxS > > \x86_microsoft.vc90.crt_1fc8b3b9a1e18e3b_9.0.21022.8_none_bcb86ed6ac711f91\ > > msvcm90.dll > > INFO: Adding Microsoft.Windows.Common-Controls to dependent assemblies > > of final executable > > INFO: Adding Microsoft.VC90.DebugCRT to dependent assemblies of final > > executable > > INFO: Searching for assembly > > x86_Microsoft.VC90.DebugCRT_1fc8b3b9a1e18e3b_9.0.21022.8_none ... > > WARNING: Assembly not found > > ERROR: Assembly > > x86_Microsoft.VC90.DebugCRT_1fc8b3b9a1e18e3b_9.0.21022.8_none not > > found > > > I have Visual C++ 2008 and 2010 Express Editions and, though I'm not > > certain of the years, the redistributables for 2005, 2008, and 2010. > > > What provides VC90.DebugCRT if not the applications I already have? > > Will I be in compliance with Microsoft's restrictions on distributing > > if I package VC90.DebugCRT in the app? > > > (Duplicated > > athttp://stackoverflow.com/questions/10448600/vc90-debugcrt-not-found-b...). -- 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.
