如何在Linux RHEL上升级Python 3?

时间:2019-03-22 11:44:42

标签: python linux rhel

我有一个Linux的Rhel版本,想从Python 3.6升级到3.7.2

什么是最好的,行之有效的方法?

尝试过yum,但似乎没有最新版本的python。

1 个答案:

答案 0 :(得分:0)

分享对我有用的东西。在Enterprise RHEL 7上为我工作。

#-> python --version
Python 2.7.5

#-> yum install rh-python38

#-> scl enable rh-python38 bash

#-> python --version
Python 3.8.0

但是您每次都会进入scl shell,因为默认的shell仍然是Python 2.7。为了永久化,我必须

将此添加到我的~/.bash_profile

source /opt/rh/rh-python38/enable