Windows
winget install conda
Anaconda Path
C:\\ProgramData\\Anaconda3\\envs\\geo\\python.exe $Anaconda3\\envs\\environment
Linux
wget https://repo.anaconda.com/archive/Anaconda3-2019.07-Linux-x86_64.sh chmod +x ./Anaconda3-2019.07-Linux-x86_64.sh ./Anaconda3-2019.07-Linux-x86_64.sh # path recommandation ~/.conda
/(your conda installation path)/bin/conda init zsh conda update --prefix /root/anaconda3 anaconda
Uninstall
conda install anaconda-clean anaconda-clean --yes
anaconda install directly from git repo
Installing Packages from GitHub with Conda Commands
fINSTALLING PACKAGES IN ANACONDA A quick dirty self note This is quick note to myself that describes how to install packages directly from GitHub using the command line. Usually, I find myself doing this when I cannot find the package I want to install in the Anaconda Cloud.
https://medium.com/i-want-to-be-the-very-best/installing-packages-from-github-with-conda-commands-ebf10de396f4

Seonglae Cho