skip to Main Content

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


  1. Chosen as BEST ANSWER

    If you have the root privilege, then add the line of code below to the .bash_profile file found in your root directory:

    source /opt/rh/rh-python36/enable
    

  2. Try this:

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

    Reference Doc: https://access.redhat.com/solutions/527703

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search