Prev: win32wnet.WNetAddConnection2 to specific network interface?
Next: Download & Read your favorite ebooks with eReader JE200
From: moerchendiser2k3 on 14 Apr 2010 21:22 Hi, can anyone tell me where to find information which files are installed by the Python installer on Windows? I am looking for some special files but dont know how to catch them. Thanks!! moerchendiser2k3
From: MRAB on 14 Apr 2010 21:52 moerchendiser2k3 wrote: > Hi, > > can anyone tell me where to find information which files > are installed by the Python installer on Windows? > > I am looking for some special files but > dont know how to catch them. > The files and subfolders of Python are all installed into a single folder, for example C:\Python26, and none into the system folder or other places, if you are worried about that.
From: Leo Jay on 15 Apr 2010 00:34 On Thu, Apr 15, 2010 at 9:52 AM, MRAB <python(a)mrabarnett.plus.com> wrote: > moerchendiser2k3 wrote: >> >> Hi, >> >> can anyone tell me where to find information which files >> are installed by the Python installer on Windows? >> >> I am looking for some special files but >> dont know how to catch them. >> > The files and subfolders of Python are all installed into a single > folder, for example C:\Python26, and none into the system folder or > other places, if you are worried about that. > I don't think so. At least, the pythonXX.dll will be put in C:\windows\system32. -- Best Regards, Leo Jay
From: moerchendiser2k3 on 15 Apr 2010 06:54 Hm, I thought there will be installed something like the Microsoft Redistributable 2008 Package to make Python run?
From: Martin v. Loewis on 15 Apr 2010 17:51
moerchendiser2k3 wrote: > Hm, I thought there will be installed something > like the Microsoft Redistributable 2008 Package to make Python run? No, the Python installer integrates the Microsoft Merge Module for the Visual Studio Runtime Dynamic Link Libraries. That removes the need to install the Microsoft Redistributable Package. Regards, Martin |