Something along the lines of:

Copywget https://repo.anaconda.com/archive/Anaconda3-2020.07-Linux-x86_64.sh

to get the installer for 64 bit linux followed by:

Copybash Anaconda3-2020.07-Linux-x86_64.sh

You can get the latest release from here

Answer from Greg Lever on Stack Overflow
๐ŸŒ
Conda
docs.conda.io โ€บ projects โ€บ conda โ€บ en โ€บ stable โ€บ user-guide โ€บ install โ€บ linux.html
Installing on Linux โ€” conda 26.5.2 documentation
... Follow the prompts on the installer screens. If you are unsure about any setting, accept the defaults. You can change them later. To make the changes take effect, close and then re-open your terminal window. Test your installation. In your terminal window, run the command conda list.
๐ŸŒ
Conda
docs.conda.io โ€บ projects โ€บ conda โ€บ en โ€บ 4.6.1 โ€บ user-guide โ€บ install โ€บ linux.html
Installing on Linux โ€” conda 4.6.1 documentation
Anaconda installer for Linux. ... Follow the prompts on the installer screens. If you are unsure about any setting, accept the defaults. You can change them later. To make the changes take effect, close and then re-open your Terminal window. Test your installation. To use conda with fish shell, add the following line ...
๐ŸŒ
Learn Ubuntu
learnubuntu.com โ€บ install-conda
How to Install Conda in Ubuntu Command Line
October 9, 2023 - Next, the installer will ask if you wish to run the conda init command. This command will modify your .bashrc file so that the PATH variable contains the path to the software installed by Miniconda.
๐ŸŒ
Anaconda
anaconda.com โ€บ docs โ€บ getting-started โ€บ miniconda โ€บ install
Installing Miniconda - Anaconda
Recommended for users new to command-line tools. Install Miniconda using Command Prompt or PowerShell. Ideal for automation and advanced users. Install Miniconda using a standard macOS .pkg installer. Quick setup for users who prefer GUI workflows. Install Miniconda using Terminal commands. Provides more control over installation location and options. Install Miniconda using shell commands. Supports multiple Linux architectures including x86_64 and ARM64.
๐ŸŒ
Conda
docs.conda.io โ€บ projects โ€บ conda โ€บ en โ€บ latest โ€บ user-guide โ€บ install โ€บ linux.html
Installing on Linux โ€” conda 26.5.3.dev35 documentation
... Follow the prompts on the installer screens. If you are unsure about any setting, accept the defaults. You can change them later. To make the changes take effect, close and then re-open your terminal window. Test your installation. In your terminal window, run the command conda list.
๐ŸŒ
Medium
medium.com โ€บ @mustafa_kamal โ€บ a-step-by-step-guide-to-installing-conda-in-ubuntu-and-creating-an-environment-d4e49a73fc46
A Step-by-Step Guide to Installing Conda in Ubuntu and Creating an Environment | by Mustafa Khan | Medium
September 28, 2023 - cd /tmp curl -O https://repo.anaconda.com/archive/Anaconda3-2020.11-Linux-x86_64.sh ยท Run Anaconda Script: Execute the Anaconda script you just downloaded. By default, it will install Anaconda in your home directory under /home/<username>/anaconda3. Replace <username> with your actual username. ... Now that you have Conda up and running, letโ€™s create a Conda environment. Create Environment: To create a new environment named โ€˜My_env1โ€™ with Python 3, use the following command:
๐ŸŒ
Waylon Walker
waylonwalker.com โ€บ install-miniconda
How to Install miniconda on linux (from the command line only) | Waylon Walker
August 10, 2020 - -s skip running pre/post-link/install scripts -u update an existing installation -t run package tests after installation (may install conda-build) A quick and easy way to silence everything or to log it to a file during an automated install is to wrap the script into a bash function, or save it to its own file, and call the file. I like the function method since I can still copy it right into a terminal, or keep my install script as one single file. install_miniconda () { mkdir -p ~/miniconda3 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 -rf ~/miniconda3/miniconda.sh ~/miniconda3/bin/conda init bash ~/miniconda3/bin/conda init zsh }
Find elsewhere
๐ŸŒ
Greenwebpage
greenwebpage.com โ€บ home โ€บ blog โ€บ how to install conda on ubuntu 24.04: an easy way
How to Install Conda on Ubuntu 24.04: An Easy Way - Greenwebpage Community
April 10, 2025 - Install Conda on Ubuntu 24.04 with easy commands from the terminal. Download the Conda file with the โ€œ.shโ€ extension and use the command bash Anaconda3-2024.06-1-Linux-x86_64.sh to install it on your Ubuntu 24.04 system.
๐ŸŒ
Conda
docs.conda.io โ€บ projects โ€บ conda โ€บ en โ€บ latest โ€บ user-guide โ€บ install โ€บ index.html
Installing conda โ€” conda 26.5.3.dev35 documentation
Download the installer file and, before installing, verify it as follows: ... Use the free online verifier tool on the Microsoft website. Download the file and extract it. Open a Command Prompt window. Navigate to the file. ... Linux: In a terminal window enter sha256sum filename.
๐ŸŒ
Engineering for Data Science
engineeringfordatascience.com โ€บ posts โ€บ how to install miniconda from the command line (linux/macos)
How to Install Miniconda from the Command Line (Linux/MacOS) | Engineering for Data Science
January 27, 2022 - mamba create -n testenv python=3.9 # much quicker than conda install!! mamba install jupyterlab voila ipywidgets pandas matplotlib ยท In this post, we have demonstrated how to download Miniconda from the command line on to a Linux or MacOS machine.
๐ŸŒ
Conda
docs.conda.io โ€บ projects โ€บ conda โ€บ en โ€บ stable โ€บ user-guide โ€บ getting-started.html
Getting started with conda โ€” conda 26.5.2 documentation
# via environment activation conda activate myenvironment conda install matplotlib # via command line option conda install --name myenvironment matplotlib
๐ŸŒ
Xwanglabthu
xwanglabthu.github.io โ€บ cfDNApipe โ€บ docs โ€บ conda_installation.html
How to install conda/anaconda
Open miniconda installer page and select a version. Here, we download Miniconda3 Linux 64-bit as an example like below. ... Use the foloowing command to install miniconda.
๐ŸŒ
Conda
docs.conda.io โ€บ docs โ€บ test-drive.html
Getting started with conda โ€” conda 26.5.3.dev35 documentation
# via environment activation conda activate myenvironment conda install matplotlib # via command line option conda install --name myenvironment matplotlib
๐ŸŒ
DEV Community
dev.to โ€บ waylonwalker โ€บ installing-miniconda-on-linux-from-the-command-line-4ad7
How to Install miniconda on linux (from the command line only) - DEV Community
August 18, 2020 - Installing miniconda on Linux can ... install miniconda into, download the latest python 3 based install script for Linux 64 bit, run the install script, delete the install script, then add a conda initialize to your bash or zsh shell....
๐ŸŒ
Conda
docs.conda.io โ€บ projects โ€บ conda โ€บ en โ€บ 4.12.x โ€บ user-guide โ€บ install โ€บ linux.html
Installing on Linux โ€” conda 4.12.0 documentation
... Follow the prompts on the installer ... re-open your terminal window. Test your installation. In your terminal window or Anaconda Prompt, run the command conda list....
๐ŸŒ
Linux Hint
linuxhint.com โ€บ install-conda-command-line-ubuntu-linux
How to Install Conda Command Line in Ubuntu Linux โ€“ Linux Hint
Tutorial on installing the Conda command line in Ubuntu Linux to simplify the overall process of installing and modifying the software packages on your devices.
๐ŸŒ
Conda
docs.conda.io โ€บ projects โ€บ conda โ€บ en โ€บ stable โ€บ user-guide โ€บ install โ€บ index.html
Installing conda โ€” conda 26.5.2 documentation
Download the installer file and, before installing, verify it as follows: ... Use the free online verifier tool on the Microsoft website. Download the file and extract it. Open a Command Prompt window. Navigate to the file. ... Linux: In a terminal window enter sha256sum filename.