Skip to content

Instantly share code, notes, and snippets.

@LowriWilliams
Created May 20, 2020 10:07
Show Gist options
  • Save LowriWilliams/9b39457007246065cf406833b1d0795d to your computer and use it in GitHub Desktop.
Save LowriWilliams/9b39457007246065cf406833b1d0795d to your computer and use it in GitHub Desktop.
spotify/flask_env_setup
# 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