Feel at home and work fast no matter which host you're working on.
Remember you can set up Conda via something like the following Bash snippet available as a Gist when on Linux:
wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh &&
bash miniconda.sh -b -u -p "${HAFH:-${HOME}}/miniconda3" &&
"${HAFH:-${HOME}}"/miniconda3/bin/conda init bash &&
export PATH="${HAFH:-${HOME}}/miniconda3/bin:${PATH}" &&
rm -rf miniconda.sh
Remember that you want to also create a main
environment to keep the base
Conda environment clean:
conda create --name main --clone base --copy
When spinning up a new machine, you need to set up SSH keys to authenticate with GitHub
- Create a new SSH public-private key pair:
ssh-keygen -t ed25519 -C "[email protected]" &&
cat "${HOME}/.ssh/id_ed25519.pub"