重新启动/注销/登录后,如何使Python3.6 Red Hat Software Collection持久存在?

时间:2019-05-13 15:20:07

标签: python linux centos redhat software-collections

我正在尝试在重新启动后启用rh-python36软件收集,因此我可以避免一直调用“ scl enable”。
解压缩并安装软件包后:

yum install -y tmp/rpms/*

我使用以下脚本在/etc/profile.d下创建了一个新文件“ python36.sh”:

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

重新启动或重新启动实例后,我得到: No such file or directoryenable
我正在使用CentOS 6.10版(最终版)

2 个答案:

答案 0 :(得分:0)

尝试一下:

#!/bin/bash
source scl_source enable rh-python36

参考文档:https://access.redhat.com/solutions/527703

答案 1 :(得分:0)

如果您具有root特权,则将下面的代码行添加到在根目录中找到的.bash_profile文件中:

source /opt/rh/rh-python36/enable