centos essential install script
sudo yum -y update | |
# nodejs | |
curl --silent --location https://rpm.nodesource.com/setup_10.x | sudo bash - | |
sudo yum install -y nodejs | |
node --version | |
# python3 | |
sudo yum install centos-release-scl | |
sudo yum install rh-python36 | |
scl enable rh-python36 bash |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment