Created
January 28, 2017 08:06
-
-
Save mateothegreat/cdcdd9a21d499273c661ae5704b912b5 to your computer and use it in GitHub Desktop.
Prepare CentOS for Cloud9 ("c9") remote ssh workspace
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
# Prepare dependencies | |
sudo yum -y groupinstall "Development Tools" && \ | |
sudo yum -y install ncurses-devel \ | |
glibc-static && | |
# Install Node Version Manager ("nvm") | |
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.0/install.sh | bash && | |
# Install node.js | |
nvm install v6.9.4 && | |
# Update npm | |
npm install -g npm |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment