Skip to content

Instantly share code, notes, and snippets.

View jshorish's full-sized avatar

Jamsheed Shorish jshorish

View GitHub Profile
@jshorish
jshorish / install_mongodb_ubuntu_14.04
Last active August 29, 2015 14:10
Configure sources and install mongodb on Ubuntu 14.04
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
@jshorish
jshorish / install_pymongo_python3_via_pip3
Created November 25, 2014 10:05
Install PyMongo for Python3 via pip3 on Ubuntu 14.04
python3 --version # should return 'Python 3.4.0'
sudo apt-get install python3-pip
sudo pip3 install pymongo