Skip to content

Commit 1523344

Browse files
authored
Update conda installation instructions
1 parent e19328e commit 1523344

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

lab/software_installation_manual.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,11 @@ If you're in the Ubuntu rooms at KTH, follow these steps to install Miniconda in
55
1. Go to the [KTH IT support page for Ubuntu installations](https://intra.kth.se/en/it/programvara-o-system/programvara/installera/kth-ubuntu/personal-1.811003) and download the Miniconda installer suitable for Linux. Check out the "Miniconda – minimal conda environment" section.
66

77
```bash
8+
# Get the latest release of Miniconda for linux
89
wget 'https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh'
9-
md5sum -c <(echo "bec6203dbb2f53011e974e9bf4d46e93 *Miniconda3-latest-Linux-x86_64.sh")
10+
# Next, check the SHA256 checksum of the downloaded file
11+
# Should say 'OK'. If not, check if there is a newer version at https://repo.anaconda.com/miniconda/ and use the new SHA256 checksum (the long string of letters and numbers)
12+
echo "dda3629462ba1cfa72eb74535214c2e315c77f1cfb0f02046537e99f1bf64abc *Miniconda3-latest-Linux-x86_64.sh" | sha256sum -c
1013
bash Miniconda3-latest-Linux-x86_64.sh -b -p "$HOME/miniconda3"
1114
```
1215

0 commit comments

Comments
 (0)