如何在重启 Centos 6.5 机器后自动启用 Python?

如何在重启 Centos 6.5 机器后自动启用 Python?

我正在使用 Software Collections Repository (SCL) 在 Centos 6 计算机上安装 Python 3 软件包“rh-python36”。我将此脚本添加到位于 /etc/profile.d 目录中的 .sh 文件中:

#!/bin/bash
source /opt/rh/rh-python36/enable
export X_SCLS="`scl enable rh-python36 'echo $X_SCLS'`"

我不确定出了什么问题。对于这样的问题还有其他解决方案吗?

相关内容