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.
Asked
Active
Viewed 1.6k times
5
-
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 Answers
21
Have you actually installed Flask-Script?
If not, try pip install Flask-Script
.

user94559
- 59,196
- 6
- 103
- 103
-
1Thanks! I thought flask-script was a part of flask, but apparently it is a separate package. – Steve Scott Aug 22 '16 at 19:55