Python两个版本同时使用

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python两个版本同时使用相关的知识,希望对你有一定的参考价值。

Python3.6
计算机->系统属性->高级系统设置->环境变量->
C:\Program Files\Git\cmd;C:\Users\Administrator\AppData\Local\Programs\Python\Python36\python.exe  
#用分号隔开
找到Python.exe改成Python3.exe
Python2.7
C:\Program Files\Git\cmd;C:\Users\Administrator\AppData\Local\Programs\Python\Python36\python.exe;E:\python
找到Python.exe改成Python2.exe
#查看
C:\Users\Administrator>python3
Python 3.6.1 (v3.6.1:69c0db5, Mar 21 2017, 18:41:36) [MSC v.1900 64 bit (AMD64)]
 on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> exit()

C:\Users\Administrator>python2
Python 2.7.13 (v2.7.13:a06454b1afa1, Dec 17 2016, 20:42:59) [MSC v.1500 32 bit (
Intel)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>>

 

以上是关于Python两个版本同时使用的主要内容,如果未能解决你的问题,请参考以下文章

Python中的同时赋值语义

Python代码阅读(第40篇):通过两个列表生成字典

如何在一台电脑上同时使用 Python 2 和 Python 3

scrapy按顺序启动多个爬虫代码片段(python3)

当同时安装Python2和Python3后,如何兼容并切换使用详解(比如pip使用)

python3和python可以同时安装吗