From e1dca1b9332690ce86da5829658ead3735f0cc6f Mon Sep 17 00:00:00 2001 From: Kevin Mills <35641675+millsks@users.noreply.github.com> Date: Wed, 21 Jun 2023 11:22:02 -0500 Subject: [PATCH] Update README.md Add extra step to remove ${HOME}/.conda directory. It holds the environment file. Does not hurt being there, but in the spirit of being thorough when uninstalling. --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index f0d54948..a5345473 100644 --- a/README.md +++ b/README.md @@ -127,6 +127,8 @@ rm -rf ${CONDA_BASE_ENVIRONMENT} ```bash echo ${HOME}/.condarc will be removed if it exists rm -f "${HOME}/.condarc" +echo ${HOME}/.conda and underlying files will be removed if they exist. +rm -fr ${HOME}/.conda ``` ### Windows