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
  • 346,931
  • 104
  • 581
  • 701
Steve Scott
  • 1,441
  • 3
  • 20
  • 30
  • 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
  • 59,196
  • 6
  • 103
  • 103
0

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

pip install flask_script_extras
Lin Du
  • 88,126
  • 95
  • 281
  • 483
Shatun
  • 1