Search code examples
pythondjangopycharm

Does anyone know why base appears instead of virtualvenv? Pycharm


Does anyone know why base appears instead of virtualvenv? How can I reactivate it? I am with Pycharm on Windows

I was working well with venv and suddenly at night he changed it for base

Here it says base instead of venv

Errors

errors


Solution

  • This means that you are not in the virtual environment.

    Run the following command:

    macOS: source env/bin/activate

    Windows: env\Scripts\activate

    *env/ should be your virtual environment name.