Gangmax Blog

Remove Virtual Environment Created by "pipenv"

From here.

1
2
3
4
5
6
7
# Method 1. 
~> pipenv --venv
/Users/your_user_name/.local/share/virtualenvs/model-N-S4uBGU
~> rm -rf /Users/your_user_name/.local/share/virtualenvs/model-N-S4uBGU

# Method 2.
pipenv --rm

Comments