Itzel Bracho Molina
Itzel Bracho Molina

Reputation: 188

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

Upvotes: 0

Views: 226

Answers (1)

user16350436
user16350436

Reputation:

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.

Upvotes: 1

Related Questions