Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 958 Bytes

README.md

File metadata and controls

29 lines (20 loc) · 958 Bytes

Setup Guides

Some guides for setting up computing resources.

  1. Fermilab LPC
  2. Google Cloud
  3. CERN Lxplus

General conda / mamba set-up:

# 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 ...

Recommendations

This repository has a lot of useful unix and Python tips: https://github.com/klieret/everything-you-didnt-now-you-needed.