From: Thomas Tundor on
Is Python portable?

Can I install it on an USB Stick?

Or is Python installing (at least on WinXP) services or register some DLLs or
write something into Registry?

Thomas
From: Philip Semanchuk on

On Jul 14, 2010, at 3:28 PM, Thomas Tundor wrote:

> Is Python portable?
>
> Can I install it on an USB Stick?
>
> Or is Python installing (at least on WinXP) services or register
> some DLLs or
> write something into Registry?


http://www.portablepython.com/
From: Christian Heimes on
> Is Python portable?
>
> Can I install it on an USB Stick?
>
> Or is Python installing (at least on WinXP) services or register some DLLs or
> write something into Registry?

Yes, a single user installation of Python is portable. An installation
for every user is not portable since it installs some DLLs in system32.
Some features and extensions are not portable, e.g. COM with pywin32
because they require registered DLLs.

Christian

From: Marek Kubica on
On 14 Jul 2010 19:28:58 GMT
tommybear(a)hotmail.com (Thomas Tundor) wrote:

> Is Python portable?

Yes.

> Can I install it on an USB Stick?

Yes.

> Or is Python installing (at least on WinXP) services or register some
> DLLs or write something into Registry?

Well, the installer is writing something into the registry, although it
is not neccessary to run Python.

regards,
Marek