Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

how to uninstall miniconda ubuntu

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 one


Remove your entire conda directory
rm -rf ~/miniconda3


Remove the line which adds the conda path to the PATH environment variable
vi ~/.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 ~/.bashrc


Remove 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
Comment

PREVIOUS NEXT
Code Example
Shell :: touchpad scroll not working lenovo ubuntu 20.04 
Shell :: commit without a message 
Shell :: install xmake 
Shell :: size of directory powershell 
Shell :: how to delete deployments in kubernetes 
Shell :: install pypy3 ubuntu 
Shell :: pip install tensorflow not working 
Shell :: mvn command not found ubuntu 
Shell :: uninstall cordova plugin 
Shell :: ifconfig not found ubuntu 
Shell :: clear pacman cahce 
Shell :: purge apache 2 
Shell :: set go111module= on 
Shell :: apache2 ensite 
Shell :: Run emulator with terminal 
Shell :: git credentials 
Shell :: git push tags 
Shell :: ionic cordova live reload 
Shell :: set remote url git 
Shell :: checkbox github markdown 
Shell :: shebang unix 
Shell :: linux compress folder 
Shell :: git create empty branch 
Shell :: sonarqube docker image 
Shell :: nginx install in fedora 34 
Shell :: error Command failed with exit code 3221225477 
Shell :: Clone a specific repository 
Shell :: git revert to commit hash 
Shell :: wsl default user 
Shell :: tmux terminate session 
ADD CONTENT
Topic
Content
Source link
Name
6+6 =