Created
September 21, 2018 07:24
-
-
Save viix/91274de984f6bef81cbdb439b05d41f2 to your computer and use it in GitHub Desktop.
centos essential install script
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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