how to run both python 2.6 and 3.0 on the same windows XP box?
问题 What kind of setup do people use to run both python 2.6 and python 3.0 on the same windows machine? 回答1: Virtualenv is the solution of choice on Unix and Mac platforms. virtualenv is a tool to create isolated Python environments. The basic problem being addressed is one of dependencies and versions, and indirectly permissions. Imagine you have an application that needs version 1 of LibFoo, but another application requires version 2. How can you use both these applications? If you install