Reputation: 3
I have installed flask-jwt in VS Code using "pip install Flask-JWT" but in my code, it's showing Not Installed. How to solve the issue?
Upvotes: -1
Views: 376
Reputation: 2022
From the screenshot I see that you are using virtualenv, have you configured VS Code to run the application through the version of python installed with virtualenv? If not, take a look at this link: https://code.visualstudio.com/docs/python/environments
Probably you need to configure the right interpreter in the setting.json file by adding:
python.pythonPath: "Scripts\\python.exe"
Upvotes: 0