Skip to content

Commit

Permalink
Adjust all conda installation instructions to suggest using sha256sum
Browse files Browse the repository at this point in the history
Closes #71
  • Loading branch information
ptheywood committed Feb 8, 2022
1 parent 0713add commit 677ef2e
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 0 deletions.
3 changes: 3 additions & 0 deletions software/applications/pytorch.rst
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,10 @@ The following should get you set up with a working conda environment (replacing
mkdir $DIR
pushd $DIR
# Download the latest miniconda installer for ppcle64
wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-ppc64le.sh
# Validate the file checksum matches is listed on https://docs.conda.io/en/latest/miniconda_hashes.html.
sha256sum Miniconda3-latest-Linux-ppc64le.sh
sh Miniconda3-latest-Linux-ppc64le.sh -b -p $DIR/miniconda
source miniconda/bin/activate
Expand Down
3 changes: 3 additions & 0 deletions software/applications/tensorflow.rst
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,10 @@ The following should get you set up with a working conda environment (replacing
mkdir $DIR
pushd $DIR
# Download the latest miniconda installer for ppcle64
wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-ppc64le.sh
# Validate the file checksum matches is listed on https://docs.conda.io/en/latest/miniconda_hashes.html.
sha256sum Miniconda3-latest-Linux-ppc64le.sh
sh Miniconda3-latest-Linux-ppc64le.sh -b -p $DIR/miniconda
source miniconda/bin/activate
Expand Down
3 changes: 3 additions & 0 deletions software/applications/wmlce.rst
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,10 @@ First install anaconda (can be quite large - so using the /nobackup area):
cd /nobackup/projects/<project>
# Download the latest miniconda installer for ppcle64
wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-ppc64le.sh
# Validate the file checksum matches is listed on https://docs.conda.io/en/latest/miniconda_hashes.html.
sha256sum Miniconda3-latest-Linux-ppc64le.sh
sh Miniconda3-latest-Linux-ppc64le.sh
conda update conda
conda config --set channel_priority strict
Expand Down

0 comments on commit 677ef2e

Please sign in to comment.