-
-
Save attwad/b8b180bd58eb130c9be73b3961183554 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
# 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