Created
May 20, 2020 10:07
-
-
Save LowriWilliams/9b39457007246065cf406833b1d0795d to your computer and use it in GitHub Desktop.
spotify/flask_env_setup
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
# Create directory | |
$ mkdir spotify_sentiment_analysis | |
$ cd spotify_sentiment_analysis | |
# Create virtual environment | |
$ python3 -m venv venv | |
# Activate virtual environment | |
$ source venv/bin/activate | |
(venv) $ _ | |
# Install flask into environment | |
(venv) $ pip install flask | |
# Start Python interpreter to check Flask is installed correctly | |
(venv) $ python3 | |
import flask |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment