[Fixed]-VS Code: Python Interpreter can't find my venv

22👍

The only solution I found was to delete the venv and recreate it. I followed these steps but I’ll provide a brief summary for Windows:

  1. Activate your virtualenv. Go to the parent folder where your Virtual Environment is located and run venv\scripts\activate. Keep in mind that the first name "venv" can vary.
  2. Create a requirements.txt file. pip freeze > requirements.txt
  3. deactivate to exit the venv
  4. rm venv to delete the venv
  5. py -m venv venv to create a new one
  6. pip install -r requirements.txt to install the requirements.

6👍

Drop the "python.venvPath" setting (it doesn’t do what you seem to think it does), don’t specify these settings in your user settings, and change your "python.pythonPath" to be relative to your project, e.g.:

"python.pythonPath": "venv/Scripts/python.exe"

2👍

In my case, it wasn’t sufficient to delete and recreate the venv, to select the venv from within VS Code, or to update the pythonPath to point to the venv. VS Code was still unable to find the venv or discover the unit tests. The issue turned out to be that I had reorganized my project folders so my project was no longer in the same location where I originally created its previous virtual environment. The only solution that worked was to delete the venv, move the project back to the same parent folder it was in before, then create a new venv.

👤Matt

1👍

I found a solution for wsl users and maybe it’s happening to some of you.

If you did create the virtual enviroment in wsl mode Windows will never find the python file because there is not .exe in Linux systems, so the way to activate is

cd [folder where you have your venv]

activate folder -> source venv/bin/activate

Once you have your venv activated then open vs code

code .

And you will have the enviroment activated.

0👍

The simple solution which worked for me is as follow:

  1. Open the VS Code Terminal
  2. Navigate (from your project folder) to folder containing the environment and activate as follow:
source your_evn/bin/activate

3.Navigate back to your project folder

0👍

In my case, I had not yet installed virtualenv. You can install it using:

pip install virtualenv

Leave a comment