5

I am trying to run a program that requires flask_script. Flask is installed both on my machine and in a virtual environment. I cannot get my machine or the virtual environment to find flask_script. Please advise. Running Ubuntu.

Michael Benjamin
  • 307,417
  • 93
  • 525
  • 644
Steve Scott
  • 1,176
  • 3
  • 17
  • 23
  • Hi Steve Scott, and welcome to Stack Overflow. You say that you've tried, but failed, to get either your machine or virtual environment to find flask_script; could you [edit] your question to describe what you've tried so far and how that is working or failing? – Vince Bowdren Aug 23 '16 at 09:38

2 Answers2

21

Have you actually installed Flask-Script?

If not, try pip install Flask-Script.

user94559
  • 57,357
  • 6
  • 98
  • 99
0

You need to install 'Flask Script Extras' package by running the command

pip install flask_script_extras
slideshowp2
  • 63,310
  • 57
  • 191
  • 365
Shatun
  • 1