Reputation: 20746
How can I upgrade Python 2.7.6 to Python 2.7.7 on Windows? Should I install new version in a separate directory, change all appropriate environment variables and install all required third-party modules again?
Upvotes: 3
Views: 1190
Reputation: 5684
In short yes, however it's a little bit complicated to change every time the environment variables and may be some incompatibilities. I recommend you to use virtualenv which allows you to run different versions of python with different modules.
Actually virtualenv
is the best way to proceed...
Here i provide link on how to install virtualenv on windows
virtualenv on windows
Upvotes: 2
Reputation: 18218
No, you can install Python 2.7.7 on top of Python 2.7.6 . Just be careful to specify exactly the same installation directory you used for 2.7.6 .
Upvotes: 4