Graphs and tables for your Spotify account.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
498 B

  1. 1. Use the pip tool to install virtualenv
  2. http://docs.python-guide.org/en/latest/dev/virtualenvs/
  3. 2. Create a virtual environment in an empty directory:
  4. virtualenv -p <path to python3 executable> <path to empty directory>
  5. 3. cd into the directory you just created a virtual environment in, and clone our GitHub repo
  6. 4. Activate the virtual environment
  7. source bin/activate
  8. 5. cd into the repository root directory, install all dependencies using pip
  9. pip -r requirements.txt
  10. 6. All set!