# Resolving Python Interpreter problems when using a venv on VScode
If you are using a virtual environment, and even after trying pip installing all the necessary libraries, you have to select the python interpreter that exists in the virtual environment folder.
1. (Ctrl+Shift+P) then search for "Python: Select Interpreter"
2. Click "Enter interpreter path" followed by "Find.."
3. Navigate to your project virtual environment folder
4. Go into "Scripts" folder and then select "python.exe" as the interpreter.
These steps allow you to select the right python interpreter associated with the project's virtual environment.