Skip to content

Instantly share code, notes, and snippets.

@mateothegreat
Created January 28, 2017 08:06
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 mateothegreat/cdcdd9a21d499273c661ae5704b912b5 to your computer and use it in GitHub Desktop.
Save mateothegreat/cdcdd9a21d499273c661ae5704b912b5 to your computer and use it in GitHub Desktop.
Prepare CentOS for Cloud9 ("c9") remote ssh workspace
# 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