Created
May 14, 2018 17:05
-
-
Save hugoprudente/2806bdfbdb1aef4028ee97635bccd77e to your computer and use it in GitHub Desktop.
How to Setup Cloud9 with CentOS 6.9
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 # update yum | |
sudo yum -y install centos-release-scl # install SCL | |
sudo yum -y install python27 # install Python 2.7 | |
sudo yum -y groupinstall -y 'development tools' | |
sudo yum -y install glibc-static ncurses-devel | |
sudo rpm -Uvh https://rpm.nodesource.com/pub_4.x/el/7/x86_64/nodesource-release-el7-1.noarch.rpm | |
sudo yum install nodejs | |
scl enable python27 bash | |
curl -L https://raw.githubusercontent.com/c9/install/master/install.sh | bash |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment