Installing on Linux — Anaconda documentation https://docs.anaconda.com/anaconda/install/linux/
chino@chino-Legion-5-15IAH7H:~$ sudo apt-get install libgl1-mesa-glx libegl1-mesa libxrandr2 libxrandr2 libxss1 libxcursor1 libxcomposite1 libasound2 libxi6 libxtst6
[sudo] password for chino:
Reading package lists... Done
Building dependency tree
Reading state information... Done
libxcomposite1 is already the newest version (1:0.4.5-1).
libxcomposite1 set to manually installed.
libxcursor1 is already the newest version (1:1.2.0-2).
libxcursor1 set to manually installed.
libxi6 is already the newest version (2:1.7.10-0ubuntu1).
libxi6 set to manually installed.
libxrandr2 is already the newest version (2:1.5.2-0ubuntu1).
libxrandr2 set to manually installed.
libxss1 is already the newest version (1:1.2.3-1).
libxss1 set to manually installed.
libxtst6 is already the newest version (2:1.2.3-1).
libxtst6 set to manually installed.
libasound2 is already the newest version (1.2.2-2.1ubuntu2.5).
libasound2 set to manually installed.
libgl1-mesa-glx is already the newest version (21.2.6-0ubuntu0.1~20.04.2).
libgl1-mesa-glx set to manually installed.
libegl1-mesa is already the newest version (21.2.6-0ubuntu0.1~20.04.2).
libegl1-mesa set to manually installed.
0 upgraded, 0 newly installed, 0 to remove and 151 not upgraded.
chino@chino-Legion-5-15IAH7H:~$
chino@chino-Legion-5-15IAH7H:~$ curl -O https://repo.anaconda.com/archive/Anaconda3-<INSTALLER_VERSION>-Linux-x86_64.sh
bash: INSTALLER_VERSION: No such file or directory
chino@chino-Legion-5-15IAH7H:~$
Index of / https://repo.anaconda.com/archive/
curl -O https://repo.anaconda.com/archive/Anaconda3-2024.06-1-Linux-x86_64.sh
chino@chino-Legion-5-15IAH7H:~$ curl -O https://repo.anaconda.com/archive/Anaconda3-2024.06-1-Linux-x86_64.sh
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 1007M 100 1007M 0 0 12.7M 0 0:01:19 0:01:19 --:--:-- 12.9M
chino@chino-Legion-5-15IAH7H:~$
- Hash check, How do I verify my installer's integrity?
chino@chino-Legion-5-15IAH7H:~$ shasum -a 256 ./Anaconda3-2024.06-1-Linux-x86_64.sh
539bb43d9a52d758d0fdfa1b1b049920ec6f8c6d15ee9fe4a423355fe551a8f7 ./Anaconda3-2024.06-1-Linux-x86_64.sh
chino@chino-Legion-5-15IAH7H:~$
Anaconda installer file hashes — Anaconda documentation https://docs.anaconda.com/anaconda/hashes/
naconda3-2024.06-1-Linux-x86_64.sh
1007.9 MiB
2024-06-26 15:40:09
539bb43d9a52d758d0fdfa1b1b049920ec6f8c6d15ee9fe4a423355fe551a8f7
- continue installing...
bash ~/Downloads/Anaconda3-<INSTALLER_VERSION>-Linux-x86_64.sh
bash ./Anaconda3-2024.06-1-Linux-x86_64.sh
chino@chino-Legion-5-15IAH7H:~$ bash ./Anaconda3-2024.06-1-Linux-x86_64.sh
Welcome to Anaconda3 2024.06-1
In order to continue the installation process, please review the license
agreement.
Please, press ENTER to continue
>>>
ANACONDA TERMS OF SERVICE
Please read these Terms of Service carefully before purchasing, using, accessing, or downloading any Anaconda Of
ferings (the "Offerings"). These Anaconda Terms of Service ("TOS") are between Anaconda, Inc. ("Anaconda") and y
ou ("You"), the individual or entity acquiring and/or providing access to the Offerings. These TOS govern Your a
ccess, download, installation, or use of the Anaconda Offerings, which are provided to You in combination with t
he terms set forth in the applicab
......
......
2. "Anaconda Navigator" means a graphical interface for launching common Python programs without having to us
e command lines, to install packages and manage environments. It also allows the user to launch applications and
easily manage conda packages, environments, and channels without using command-line commands.
3. "Anaconda Public Repository", means the Anaconda packages repository of 8000 open-source data science and
machine learning packages at repo.anaconda.com.
Version 4.0 | Last Modified: March 31, 2024 | ANACONDA TOS
Do you accept the license terms? [yes|no]
>>>
Please answer 'yes' or 'no':'
>>> yes
Anaconda3 will now be installed into this location:
/home/chino/anaconda3
- Press ENTER to confirm the location
- Press CTRL-C to abort the installation
- Or specify a different location below
[/home/chino/anaconda3] >>>
PREFIX=/home/chino/anaconda3
Unpacking payload ...
Installing base environment...
Downloading and Extracting Packages:
Downloading and Extracting Packages:
Preparing transaction: done
Executing transaction: done
installation finished.
Do you wish to update your shell profile to automatically initialize conda?
This will activate conda on startup and change the command prompt when activated.
If you'd prefer that conda's base environment not be activated on startup,
run the following command when conda is activated:
conda config --set auto_activate_base false
You can undo this by running `conda init --reverse $SHELL`? [yes|no]
[no] >>> yes
no change /home/chino/anaconda3/condabin/conda
no change /home/chino/anaconda3/bin/conda
no change /home/chino/anaconda3/bin/conda-env
no change /home/chino/anaconda3/bin/activate
no change /home/chino/anaconda3/bin/deactivate
no change /home/chino/anaconda3/etc/profile.d/conda.sh
no change /home/chino/anaconda3/etc/fish/conf.d/conda.fish
no change /home/chino/anaconda3/shell/condabin/Conda.psm1
no change /home/chino/anaconda3/shell/condabin/conda-hook.ps1
no change /home/chino/anaconda3/lib/python3.12/site-packages/xontrib/conda.xsh
no change /home/chino/anaconda3/etc/profile.d/conda.csh
modified /home/chino/.bashrc
==> For changes to take effect, close and re-open your current shell. <==
Thank you for installing Anaconda3!
chino@chino-Legion-5-15IAH7H:~$
- re-open terminal
(base) chino@chino-Legion-5-15IAH7H:~$ source anaconda3/bin/activate
(base) chino@chino-Legion-5-15IAH7H:~$ conda init
no change /home/chino/anaconda3/condabin/conda
no change /home/chino/anaconda3/bin/conda
no change /home/chino/anaconda3/bin/conda-env
no change /home/chino/anaconda3/bin/activate
no change /home/chino/anaconda3/bin/deactivate
no change /home/chino/anaconda3/etc/profile.d/conda.sh
no change /home/chino/anaconda3/etc/fish/conf.d/conda.fish
no change /home/chino/anaconda3/shell/condabin/Conda.psm1
no change /home/chino/anaconda3/shell/condabin/conda-hook.ps1
no change /home/chino/anaconda3/lib/python3.12/site-packages/xontrib/conda.xsh
no change /home/chino/anaconda3/etc/profile.d/conda.csh
no change /home/chino/.bashrc
No action taken.
(base) chino@chino-Legion-5-15IAH7H:~$