Managing a virtual environment

While in a virtual environment, the things you do have no effect on other interpreters or the rest of the operating system (unless you do something quite wild).

Deactivating

You can deactivate a virtual environment if you are in one by simply running:

deactivate
    

in your command line.

Deleting a virtual environment

You can easily delete your virtual environment in only one simple way:

sudo rm -rf venv
    

Here is a guide that might prove useful