From: moerchendiser2k3 on
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
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
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
Hm, I thought there will be installed something
like the Microsoft Redistributable 2008 Package to make Python run?
From: Martin v. Loewis on
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