Extract tweets with the Twitter Streaming API and store them in MongoDB.
Create a virtual environment with Python 3.4
virtualenv -p /usr/bin/python3.4 venv
Enter the virtual environment
source venv/bin/activate
Install dependencies
pip install --upgrade pip
pip install -r requirements.txt
To install MongoDB on Ubuntu, follow this link.
To run the program
python main.py
To exit the virtual environment
deactivate