> For the complete documentation index, see [llms.txt](https://til.devjugal.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://til.devjugal.com/python/pipenv/remove-virtualenv.md).

# Remove Virtualenv (Virtual Environment)

To remove already created virtualenv by `pipenv`, we can use following command -

```bash
pipenv --rm
```

***Source:*** [***StackOverFlow***](https://stackoverflow.com/a/48431669)
