Skip to content

Instantly share code, notes, and snippets.

@alterx
Last active August 29, 2015 14:09
Show Gist options
  • Save alterx/7b06812fb1702814546d to your computer and use it in GitHub Desktop.
Save alterx/7b06812fb1702814546d to your computer and use it in GitHub Desktop.
Meteor stack install for ubuntu
#!/bin/bash
sudo apt-get update
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv 7F0CEB10
echo "deb http://downloads-distro.mongodb.org/repo/ubuntu-upstart dist 10gen" | sudo tee -a /etc/apt/sources.list.d/10gen.list
sudo apt-get update
sudo apt-get install -y git mongodb-org nodejs npm
curl https://raw.githubusercontent.com/creationix/nvm/v0.18.0/install.sh | bash
curl https://install.meteor.com | sudo sh
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment