Skip to content

Instantly share code, notes, and snippets.

@attwad
Last active August 28, 2017 03:08
Show Gist options
  • Save attwad/b8b180bd58eb130c9be73b3961183554 to your computer and use it in GitHub Desktop.
Save attwad/b8b180bd58eb130c9be73b3961183554 to your computer and use it in GitHub Desktop.
# Install virtual env via pip.
pip3 install virtualenv
# Create a new virtual env.
virtualenv create scraper
# To come back to it
source bin/activate
# See our dependencies
cat requirements.txt
beautifulsoup4
google-cloud-datastore
# Install our requirements and a nice interpreter.
pip install -r requirements.txt
pip install ipython
# Run the interpreter.
ipython
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment