From 365ab6b3bceab160bfc4f1a3b72bc5a9da879dfb Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Mon, 23 Jan 2012 04:27:52 -0500 Subject: [PATCH] missed a spot --- docs/starting/install/win.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/starting/install/win.rst b/docs/starting/install/win.rst index 8ec212f..33749f8 100644 --- a/docs/starting/install/win.rst +++ b/docs/starting/install/win.rst @@ -13,7 +13,7 @@ Typing the full path name for a Python interpreter each time quickly gets tediou You can do this easily by running the following in ``powershell``:: - [Environment]::SetEnvironmentVariable("Path", "$env:Path;C:\Python27", "User") + [Environment]::SetEnvironmentVariable("Path", "$env:Path;C:\Python27\;C:\Python27\Scripts\", "User") You do not need to install or configure anything else to use Python. Having said that, I would strongly recommend that you install the tools and libraries described in the next section before you start building Python applications for real-world use. In particular, you should always install Distribute, as it makes it much easier for you to use other third-party Python libraries.