多Python版本共存
程序员文章站
2022-05-07 09:35:53
Python 3.4 和 3.7 共存 我的电脑上同时安装了 Python 3.4 和 Python 3.7 两个 Python 版本。现在打开终端窗口进入指定的版本。 py -3.4 py -3.7py -2.7 在终端窗口输入 py -3.4 回车进入 Python 3.4 版本。Python ......
python 3.4 和 3.7 共存
我的电脑上同时安装了 python 3.4 和 python 3.7 两个 python 版本。现在打开终端窗口进入指定的版本。
py -3.4 py -3.7
py -2.7
在终端窗口输入 py -3.4 回车进入 python 3.4 版本。python 3.7 和 python 2.7 同理。
同理,python 3.7.5 和 python 3.7.6 只需输入 py -3.7.5 或 py -3.7.6 。
使用不同版本的 pip 进行安装。例如使用 python 3.4 安装 py2exe。
py -3.4 -m pip install py2exe
在 py 文件中指定使用的 python 版本只需在文件开头输入。
#! python3.7 #! python3.4
或者修改文件 python.exe 的文件名。例如将 python 3.7 版本的 python.exe 文件名改成 python37.exe,python 3.4 版本的改成 python34.exe,其余的同理。
进入终端窗口输入 python37 回车即可进入 python 3.7 版本,输入 python34 回车即可进入 python 3.4 版本,其余版本同理。
输入 python34 -m pip install py2exe 使用 python 3.4 安装 py2exe 。
配置 python 环境变量
计算机属性 --> 高级系统设置 --> 环境变量。
在用户变量中打开 path 变量,将各个 python 版本的安装路径 以及 安装路径下的 scripts 文件夹路径 添加进去,依次点击确定关闭全部窗口。
推荐阅读
-
详解Python3.1版本带来的核心变化
-
windows系统中Python多版本与jupyter notebook使用虚拟环境的过程
-
Python2.6版本中实现字典推导 PEP 274(Dict Comprehensions)
-
Python2.x版本中maketrans()方法的使用介绍
-
Python实现获取操作系统版本信息方法
-
低版本中Python除法运算小技巧
-
Python面向对象程序设计多继承和多态用法示例
-
Windows下使Python2.x版本的解释器与3.x共存的方法
-
Ubuntu18.04直接安装python3.7或者升级自带的python3.6版本之后导致终端无法打开的解决办法
-
Python—版本和环境的工具(Pipenv)