Instructions tested with Ubuntu 22.04 64-bit and Continuum’s Anaconda3 2023.07

Install Anaconda and Jupyter Notebook

1. Open the Terminal:

Windows+WSL: Select the Windows Terminal from the Windows Start menu or Search Bar.

Ubuntu: Go to “Show Applications” and Select the Terminal.

2. Type the commands in red to go to the Downloads directory and download Anaconda3 2023.07. Anaconda may take a few minutes to download.

Windows+WSL: In the following, please replace username with your appropriate Windows user.

username@Desktop:~$ cd /mnt/c/users/username/Downloads
username@Desktop:/mnt/c/users/username/Downloads$ wget https://repo.anaconda.com/archive/Anaconda3-2023.07-2-Linux-x86_64.sh

Ubuntu:

username@ubuntu:~$ cd Downloads
username@ubuntu:~/Downloads$ wget https://repo.anaconda.com/archive/Anaconda3-2023.07-2-Linux-x86_64.sh

3. Type the command in red to install Anaconda.

username@ubuntu:~/Downloads$ bash ./Anaconda3-2023.07-2-Linux-x86_64.sh

4. Press Enter to read the license agreement. Use Space to continue to the next page.

Welcome to Anaconda3 2023.07

In order to continue the installation process, please review the license agreement.
Please, press ENTER to continue

5. Type yes to accept the license terms.

Do you approve the license terms? [yes|no]
[no] >>> yes

6. Press Enter to install Anaconda to the default location.

Anaconda will now be installed into this location:
/home/username/anaconda3

- Press ENTER to confirm the location
- Press CTRL-C to abort the installation
- Or specify an different location below
[/home/username/anaconda3] >>>

7. Type yes to have Anaconda update your PATH.

installation finished.
Do you wish the installer to initialize Anaconda3
by running conda init? [yes|no]
[no] >>> yes

==> For changes to take effect, close and re-open your current shell. <==

If you'd prefer that conda's base environment not be activated on startup, set the auto_activate_base parameter to false:

conda config --set auto_activate_base false

Thank you for installing Anaconda!

8. Open a new Terminal window.

9. Type the command in red to verify Anaconda was installed.

(base) username@ubuntu:~$ python --version
Python 3.11

10. Type the command in red to update Anaconda.

(base) username@ubuntu:~$ conda update --all --yes

Start Jupyter Notebook

1. Type the command in red to start Jupyter Notebook.

username@ubuntu:~$ jupyter notebook