Installing Miniconda on rocce - CRBS/chmutil GitHub Wiki
chmutil requires Python 2.6/2.7/3 with pip. On Rocce python exists, but pip is missing. To get around this one can install Conda or in the instructions below Miniconda which is a stripped down version of Python with pip
Step 1 Log into Rocce if not already connected.
ssh <user yourname>@rocce.ucsd.edu
Step 2 Download Miniconda and make script executable
NOTE: To verify a valid package one can check the md5sum of the downloaded file with md5sum here: https://repo.continuum.io/miniconda/
Copy the text below and paste it into terminal connected to Rocce to download Miniconda and install it. The -b flag tells Miniconda to install with no questions and assumes caller has accepted their license terms.
wget https://repo.continuum.io/miniconda/Miniconda2-latest-Linux-x86_64.sh
bash Miniconda2-latest-Linux-x86_64.sh -b
Step 3 Update path to include Miniconda install
Copy the text below and paste it into terminal connected to Rocce to update environment to include Miniconda in your path.
echo 'export PATH="$HOME/miniconda2/bin:$HOME/.local/bin:$PATH"' >> ~/.bash_profile
echo 'export LC_ALL=C' >> ~/.bash_profile
source ~/.bash_profile