Prev: CHANCE YOUR LIFE CLICK THEAR
Next: Getting started with python on macintosh snow leopard with mysql- need help
From: Thomas Tundor on 14 Jul 2010 15:28 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 14 Jul 2010 15:36 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 14 Jul 2010 15:44 > 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 15 Jul 2010 05:25
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 |