missed a spot

This commit is contained in:
Kenneth Reitz
2012-01-23 04:27:52 -05:00
parent a2e4b863bd
commit 365ab6b3bc
+1 -1
View File
@@ -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.