I'm learning Python and part of the course setting up a webserver using Flask. I followed the steps as per the Flask installation documentation and for some reason the flask module is underlined as shown below. When I hover my mouse, I get additional information as below.
import flask could not be resolved from source pylance
The server is running fine though. Should i be ignoring the notification? If not what dependency have i missed?
Below is the code to setup the server
from flask import Flask
app = Flask(__name__)
@app.route('/')
def hello_world():
return 'Hello, World!'
When I did not install the module "flask
", I ran into the problem you described:
The reason is that the module "flask
" is not installed in the Python environment we currently use in VSCode.
Please use the shortcut key Ctrl+Shift+` to open a new VSCode terminal, it will automatically enter the currently selected environment, and then use the command "pip show flask" to check the installation location of the module "flask":
If it still shows that the module could not be resolved, it is recommended that you reinstall the module "flask".
Problem Will bi fixed. I have also faced same problem. but I have fixed it following this procedure
In VS Code, Go to "Python: Select interpreter" by Ctrl + Shift + P. Choose python interpreter ('base': conda)
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With