Created
August 14, 2015 07:07
-
-
Save ssbozy/b6e0993bdc6b0e4fee65 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
#!/usr/bin/env bash | |
# Repo update | |
#sudo apt-get update | |
# Install Databases | |
# COUCHDB | |
#sudo apt-get install -y couchdb | |
# MONGODB | |
#sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 7F0CEB10 | |
#echo 'deb http://downloads-distro.mongodb.org/repo/ubuntu-upstart dist 10gen' | sudo tee /etc/apt/sources.list.d/mongodb.list | |
#sudo apt-get update | |
#sudo apt-get install -y mongodb-org | |
# Install ubuntu packages | |
#sudo apt-get install -y ipython | |
#sudo apt-get install -y mysql-server php5-mysql | |
#sudo apt-get install -y supervisor | |
#sudo apt-get install -y nginx | |
# Install python related packages | |
#sudo apt-get install -y python-pip | |
#sudo apt-get install -y python-dev | |
#sudo apt-get install -y build-essential | |
#sudo apt-get install -y python-numpy | |
#sudo apt-get install -y python-scipy | |
# Install python packages | |
#sudo pip install simplejson | |
#sudo pip install tornado | |
#sudo pip install flask | |
#sudo pip install pymongo | |
#sudo pip install couchdb |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment