Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
可能重复: Powershell Python:使用的更改版本
我的机器(Windows)上同时安装了 python 2.7 和 3.3。假设我想在它们之间来回切换;如何编写一个脚本来设置更改路径变量,以便我可以轻松地来回切换而无需手动执行?
与其更改路径变量,不如将它们从路径中删除并符号链接您想要在路径中的某个公共文件夹中使用的那个(如/usr/local/bin)。然后编写一个脚本在它们之间来回切换将非常简单。只需删除符号链接并ln -s再次执行。
/usr/local/bin
ln -s
编辑:无视;请参阅链接的重复答案以获得更好的解决方案。
import sys sys.path.remove('<path to 2.7>') sys.path.append('<path to 3.3>')
反之亦然