Home > Back-end >  Import "flask" could not be resolved Pylance
Import "flask" could not be resolved Pylance

Time:10-28

I am getting this missing import error.

enter image description here

I tried installing flask and flask alchemy again but it says requirement satisfied

CodePudding user response:

Did you install the module?

You can do this by for example by writing pip install flask in your command line.

  • Related