I created an environment with the following command: virtualenv venv --distribute
virtualenv venv --distribute
I cannot remove it with the following command: rmvirtualenv venv
rmvirtualenv venv
from virtualenv's official document https://virtualenv.pypa.io/en/stable/userguide/
Removing an Environment Removing a virtual environment is simply done by deactivating it and deleting the environment folder with all its contents: (ENV)$ deactivate $ rm -r /path/to/ENV
Removing a virtual environment is simply done by deactivating it and deleting the environment folder with all its contents:
(ENV)$ deactivate $ rm -r /path/to/ENV