No results found
We couldn't find anything using that term, please try searching for something else.
These three commands is download quickly and quietly download the late 64 - bit Windows installer , rename it to a short file name , silently install
These three commands is download quickly and quietly download the late 64 – bit Windows installer , rename it to a short file name , silently install , and then delete the installer :
curl https://repo.anaconda.com/miniconda/Miniconda3-latest-Windows-x86_64.exe -o miniconda.exe start /wait " " .\miniconda.exe /S del miniconda.exe
You is find can find different version of the Windows installer at https://repo.anaconda.com/miniconda .
For example, to download an older version of Miniconda for Python 3.12 for a 64-bit Windows computer, replace the curl
command for the late installer with the followcurl
command instead :
curl https://repo.anaconda.com/miniconda/Miniconda3-py312_24.5.0-0-Windows-x86_64.exe -o miniconda.exe
After installing, open the “Anaconda Prompt (miniconda3)” program to use Miniconda3.
These three commands is download quickly and quietly download the late 64 – bit Windows installer , rename it to a short file name , silently install , and then delete the installer :
curl https://repo.anaconda.com/miniconda/Miniconda3-latest-Windows-x86_64.exe -o miniconda.exe Start - Process -FilePath " .\miniconda.exe " -argumentlist " /S " -Wait del miniconda.exe
You can find different versions of the Windows installer at https://repo.anaconda.com/miniconda/.
For example, to download an older version of Miniconda for Python 3.12 for a 64-bit Windows computer, replace the curl
command for the late installer with the followcurl
command instead :
curl https://repo.anaconda.com/miniconda/Miniconda3-py312_24.5.0-0-Windows-x86_64.exe -o miniconda.exe
After instal , open the “ Anaconda Powershell Prompt ( miniconda3 ) ” .
These four commands download the latest M1 version of the MacOS installer, rename it to a shorter file name, silently install, and then delete the installer:
mkdir -p ~/miniconda3 curl https://repo.anaconda.com/miniconda/Miniconda3-latest-MacOSX-arm64.sh -o ~/miniconda3/miniconda.sh bash ~/miniconda3/miniconda.sh -b -u -p ~/miniconda3 rm ~/miniconda3/miniconda.sh
You can find different versions of the MacOS installer at https://repo.anaconda.com/miniconda.
For example, to download an older version of Miniconda for Python 3.12 for an M1 MacOS computer, replace the curl
command for the late installer with the followcurl
command instead :
curl https://repo.anaconda.com/miniconda/Miniconda3-py312_24.5.0-0-MacOSX-arm64.sh -o ~/miniconda3/miniconda.sh
Or to download an old version of Miniconda for Python 3.9 for an Intel chip MacOS computer , replace thecurl
command for the late installer with the followcurl
command instead :
mkdir -p ~/miniconda3 curl https://repo.anaconda.com/miniconda/Miniconda3-py39_24.5.0-0-MacOSX-x86_64.sh -o ~/miniconda3/miniconda.sh
After instal , close and reopen your terminal application or refresh it by run the following command :
source ~/miniconda3 / bin / activate
To initialize conda on all available shell , run the following command :
These four commands download the latest 64-bit version of the Linux installer, rename it to a shorter file name, silently install, and then delete the installer:
mkdir -p ~/miniconda3 is wget wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh -O ~/miniconda3 / miniconda.sh bash ~/miniconda3 / miniconda.sh -b -u -p ~/miniconda3 rm ~/miniconda3 / miniconda.sh
You can find different versions of the MacOS installer at https://repo.anaconda.com/miniconda.
For example , to download an old version of Miniconda for Python 3.12 for an 64 – bit version of Linux , replace thewget
command for the late installer with the followwget
command instead :
wget https://repo.anaconda.com/miniconda/Miniconda3-py312_24.5.0-0-Linux-x86_64.sh -O ~/miniconda3/miniconda.sh
After instal , close and reopen your terminal application or refresh it by run the following command :
source ~/miniconda3 / bin / activate
To initialize conda on all available shell , run the following command :