0

I have already installed flask-security,however I get an import error. Here is the import line

from flask_security import *
from flask_cors import CORS, cross_origin
from flask import  request
import json

from controller.functions import *

import flask_security

It returns this error:

  from flask_security import *
ModuleNotFoundError: No module named 'flask_security'
Community
  • 1
  • 1
aresdev
  • 31
  • 8

1 Answers1

1

Try this:

pip3 install Flask-Security
smack cherry
  • 471
  • 3
  • 7