364,111 Members | 2049 Browsing Online
Community for Developers & IT Professionals
Bytes IT Community

Windows installation - questions about DLLs

Guillaume Hiron
P: n/a
Guillaume Hiron
Hi,

I need to install python (2.3.5) on windows without the giving installer
program.
Do you know what dlls are needed?
I found python23.dll, but the other (msvcrt.dll,msvcrit.dll) seems not
be useful.
Is there other dll? Are msvcrt.dll and msvcrit.dll used by
something?(test/test___all__.py return no error whitout these two dlls).

Thanks for helping.
Jul 19 '05 #1
Share this Question
Share on Google+
2 Replies


kuoxin
P: n/a
kuoxin
python23.dll requires msvcrt.dll basically.
if you use some .pyd, python requires other dll.
for example:
import _mysql # you must add a libmysql.dll for this module


kuoxin


Guillaume Hiron wrote:[color=blue]
> Hi,
>
> I need to install python (2.3.5) on windows without the giving installer
> program.
> Do you know what dlls are needed?
> I found python23.dll, but the other (msvcrt.dll,msvcrit.dll) seems not
> be useful.
> Is there other dll? Are msvcrt.dll and msvcrit.dll used by
> something?(test/test___all__.py return no error whitout these two dlls).
>
> Thanks for helping.[/color]

Jul 19 '05 #2

Larry Bates
P: n/a
Larry Bates
Take a look at py2exe it provides a way to "collect" all
necessary files together for you. Add Inno Installer to
the mix and you can create setup.exe insallation programs
that don't require a Python install to distribute software.

-Larry Bates


Guillaume Hiron wrote:[color=blue]
> Hi,
>
> I need to install python (2.3.5) on windows without the giving installer
> program.
> Do you know what dlls are needed?
> I found python23.dll, but the other (msvcrt.dll,msvcrit.dll) seems not
> be useful.
> Is there other dll? Are msvcrt.dll and msvcrit.dll used by
> something?(test/test___all__.py return no error whitout these two dlls).
>
> Thanks for helping.[/color]
Jul 19 '05 #3

Post your reply

Help answer this question



Didn't find the answer to your Python question?

You can also browse similar questions: Python