Skip to content

Instantly share code, notes, and snippets.

@viix
Created September 21, 2018 07:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save viix/91274de984f6bef81cbdb439b05d41f2 to your computer and use it in GitHub Desktop.
Save viix/91274de984f6bef81cbdb439b05d41f2 to your computer and use it in GitHub Desktop.
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