In order to uninstall miniconda, simply remove the miniconda folder,
rm -r ~/miniconda/
As for avoiding conflicts between different Python environments, you can use virtual environments. In particular, with Miniconda, the following workflow could be used,
$ wget https://repo.continuum.io/miniconda/Miniconda3-3.7.0-Linux-x86_64.sh -O ~/miniconda.sh
$ bash miniconda
$ conda env remove --yes -n new_env # remove the environement new_env if it exists (optional)
$ conda create --yes -n new_env pip numpy pandas scipy matplotlib scikit-learn nltk ipython-notebook seaborn python=2
$ activate new_env
$ # pip install modules if needed, run python scripts, etc
# everything will be installed in the new_env
# located in ~/miniconda/envs/new_env
$ deactivate
Answer from rth on Stack OverflowIn order to uninstall miniconda, simply remove the miniconda folder,
rm -r ~/miniconda/
As for avoiding conflicts between different Python environments, you can use virtual environments. In particular, with Miniconda, the following workflow could be used,
$ wget https://repo.continuum.io/miniconda/Miniconda3-3.7.0-Linux-x86_64.sh -O ~/miniconda.sh
$ bash miniconda
$ conda env remove --yes -n new_env # remove the environement new_env if it exists (optional)
$ conda create --yes -n new_env pip numpy pandas scipy matplotlib scikit-learn nltk ipython-notebook seaborn python=2
$ activate new_env
$ # pip install modules if needed, run python scripts, etc
# everything will be installed in the new_env
# located in ~/miniconda/envs/new_env
$ deactivate
The proper way to fully uninstall conda (Anaconda / Miniconda):
Remove all conda-related files and directories using the Anaconda-Clean package
conda activate your_conda_env_name conda install anaconda-clean anaconda-clean # add `--yes` to avoid being prompted to delete each oneRemove your entire conda directory
rm -rf ~/miniconda3Remove the line which adds the conda path to the
PATHenvironment variablevi ~/.bashrc # -> Search for conda and delete the lines containing it # -> If you're not sure if the line belongs to conda, comment it instead of deleting it just to be safe source ~/.bashrcRemove the backup folder created by the the Anaconda-Clean package NOTE: Think twice before doing this, because after that you won't be able to restore anything from your old conda installation!
rm -rf ~/.anaconda_backup
Reference: Official conda documentation
How to uninstall bcml and miniconda in Steam Deck?
My miniconda3 installation is screwed up. Reinstall? something else? - How do I ... ? - Conda Community Forum
what is MiniConda3? Do I need it? I don't remember me downloading it? What would happen if I delete it? PLS HELP!!
This is what google is for.
MiniConda3 is a Python 3 installer for Conda, a Python package manager.
If you do any work with python or use any scripts/programs which need python this is probably what its for.
Once its installed you should be able to uninstall it.
More on reddit.comhow do i fully delete anaconda and its environments
Videos
I just installed miniconda and bcml in my Steam Deck, but I didn't notice that I installed both in the internal memory not in my SD card so I don't have enough space for my mods (I have the 64 GB completely occupied now). My question is How do I uninstall bcml? Is like in PC with a command? Is the same command? Also is the same way with miniconda? And miniconda can be installed in a SD card?
Any help, please.