Some guides for setting up computing resources.
# Download the setup bash file from here https://github.com/conda-forge/miniforge#mambaforge
# e.g. wget https://github.com/conda-forge/miniforge/releases/latest/download/Mambaforge-Linux-x86_64.sh
# Install: (the mamba directory can end up taking O(1-10GB) so make sure the directory you're using allows that quota)
./Mambaforge-Linux-x86_64.sh # follow instructions in the installation
mamba create -n my-env python=3.10
mamba activate my-env
mamba install ...
This repository has a lot of useful unix and Python tips: https://github.com/klieret/everything-you-didnt-now-you-needed.