![]() |
Available news archives:
comp.lang.tcl
-
comp.lang.python
-
comp.security.firewalls
-
sci.crypt -
comp.lang.php -
comp.lang.javascript
|
|
comp.lang.python archiveRe: path to python in WinXP
From: Tim Chase <python.list@tim.thechases.com>
Date: Tue Jan 31 2006 - 18:22:28 CET
> I have a real newbie question here.
Well, as a starter, it would be helpful if you included a
> On WinXP I open a command line and type 'python' and get 'PYTHON' is
The general problem is that in your cmd.exe/command.com
If you want to do it for a single dos session, you can do the
c:\> path %path%;c:\path\to\python\exe
This will add the location of the python exe (in this example,
For a more persistant solution, go to your system properties and
winkey+break (pulls up the system properties)
On that screen, you should see the "Path" in the "System
Voila!
Alternatively, instead of running python directly, you should
c:\> start python
which will likely start it in a new window.
-tim
|