Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #100023 > unrolled thread
| Started by | Glenn Linderman <v+python@g.nevcal.com> |
|---|---|
| First post | 2015-12-04 15:26 -0800 |
| Last post | 2015-12-05 10:07 +0100 |
| Articles | 2 — 2 participants |
Back to article view | Back to comp.lang.python
msvcr100.dll missing ... error started after Windows 10 update to 10586.17 Glenn Linderman <v+python@g.nevcal.com> - 2015-12-04 15:26 -0800
Re: msvcr100.dll missing ... error started after Windows 10 update to 10586.17 Christian Gollwitzer <auriocus@gmx.de> - 2015-12-05 10:07 +0100
| From | Glenn Linderman <v+python@g.nevcal.com> |
|---|---|
| Date | 2015-12-04 15:26 -0800 |
| Subject | msvcr100.dll missing ... error started after Windows 10 update to 10586.17 |
| Message-ID | <mailman.215.1449272044.14615.python-list@python.org> |
My wife's 64-bit Win8 home machine has 32-bit Python 3.3 installed. Then it upgraded to Win 8.1. Then I upgraded it to Win 10. Then I upgraded it to Threshold 2. It gets regular automatic updates also, like the one last night to build 10586.17. That's the history. When she tried a python script today, it failed, with an error saying that MSVCR100.dll was missing. After a few false starts, like being surprised that the error happened when it worked yesterday, and that there was an MSVCR100.dll in %windir%\system32, doing a search for all MSVCR100.dll on her machine discovered quite a few in various application directories, but then also one in \windows.old\WINDOWS\SysWOW64, the light-bulb blinked on, I copied that one to the \python33 directory, and everything works. Why M$ chose to delete MSVCR100.dll from %windir%\SysWOW64 in the recent update is a mystery, however. So this is just a data point and warning and solution, not really an expectation that anyone will be able to explain M$. Glenn
[toc] | [next] | [standalone]
| From | Christian Gollwitzer <auriocus@gmx.de> |
|---|---|
| Date | 2015-12-05 10:07 +0100 |
| Message-ID | <n3u9bm$p0e$1@dont-email.me> |
| In reply to | #100023 |
Am 05.12.15 um 00:26 schrieb Glenn Linderman: > My wife's 64-bit Win8 home machine has 32-bit Python 3.3 installed. > > Then it upgraded to Win 8.1. Then I upgraded it to Win 10. Then I > upgraded it to Threshold 2. It gets regular automatic updates also, like > the one last night to build 10586.17. > > That's the history. > > When she tried a python script today, it failed, with an error saying > that MSVCR100.dll was missing. > > After a few false starts, like being surprised that the error happened > when it worked yesterday, and that there was an MSVCR100.dll in > %windir%\system32, doing a search for all MSVCR100.dll on her machine > discovered quite a few in various application directories, but then also > one in \windows.old\WINDOWS\SysWOW64, the light-bulb blinked on, I > copied that one to the \python33 directory, and everything works. These MSVCR*DLL are a bit different from other DLLs. They constitute the runtime for programs compiled using Visual Studio 2010. Instead of mucking around with these files manually, you should install the "Redustributable Package" found here https://www.microsoft.com/en-us/download/details.aspx?id=14632 for 32bit or here https://www.microsoft.com/en-us/download/details.aspx?id=5555 for 64 bit. Both can be installed simultaneously to support 32bit and 64bit programs. There is also a "Visual Studio 2010 SP1" version - I'm not sure which one is correct. It depends on the version of the compiler that Python was built with. > Why M$ chose to delete MSVCR100.dll from %windir%\SysWOW64 in the recent > update is a mystery, however. Maybe the upgrade process didn't recognize it as part of the rediistributable, maybe it was not installed correctly. The MS recommended way for an installer is to package that "redistributable" and to launch it during the installation of the main program. > So this is just a data point and warning and solution, not really an > expectation that anyone will be able to explain M$. > > Glenn
[toc] | [prev] | [standalone]
Back to top | Article view | comp.lang.python
csiph-web