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).
You can deactivate a virtual environment if you are in one by simply running:
deactivate
in your command line.
You can easily delete your virtual environment in only one simple way:
sudo rm -rf venv
Here is a guide that might prove useful