I am trying to enable rh-python36 software collection after reboot So I can avoid calling “scl enable” all the time.
After unzipping and installing the package:
yum install -y tmp/rpms/*
I created a new file “python36.sh” under /etc/profile.d with the following script:
#!/bin/bash
source /opt/rh/rh-python36/enable
export X_SCLS="`scl enable rh-python36 'echo $X_SCLS'`"
After restarting or rebooting the instance, I am getting : No such file or directoryenable
I am using CentOS release 6.10 (Final)
2
Answers
If you have the root privilege, then add the line of code below to the .bash_profile file found in your root directory:
Try this:
Reference Doc: https://access.redhat.com/solutions/527703