Created
October 15, 2016 23:26
-
-
Save JamesDaniel/39229859d5c3d6e0086ec6a5159d9862 to your computer and use it in GitHub Desktop.
This file contains 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
mint 18 installations | |
Installation steps taken for this VM: | |
Install Curl: | |
sudo apt-get install curl | |
Install nodejs: | |
curl -sL https://deb.nodesource.com/setup_4.x | sudo -E bash - | |
sudo apt-get install -y nodejs | |
Install build tools for npm: | |
sudo apt-get install -y build-essential | |
Update npm: | |
sudo npm install -g npm | |
Install Yeoman: | |
sudo npm install -g yo | |
Install Java 8: | |
sudo add-apt-repository ppa:webupd8team/java | |
sudo apt-get update | |
sudo apt-get install oracle-java8-installer | |
Install maven 3: | |
use the GUI synaptic package manager | |
Install Git: | |
sudo apt-get install git | |
Install Gem: | |
sudo apt-get install gem | |
Install Compass: | |
sudo apt-get install ruby-dev | |
sudo gem install compass | |
Install MongoDB: | |
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 0C49F3730359A14518585931BC711F9BA15703C6 | |
echo "deb http://repo.mongodb.org/apt/debian wheezy/mongodb-org/3.3 main" | sudo tee /etc/apt/sources.list.d/mongodb-org-3.4.list | |
sudo apt-get update | |
sudo apt-get install -y mongodb-org | |
sudo service mongod start |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment