Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Info

if these are not properly installed, the setup script mentioned below will fail miserably unless I ever make it more robust :)

Windows

We use WSL on Windows. All commands henceforth are either from wsl (labelled wsl) or the Windows “terminal” app (labelled Windows)image-20241014-202410.pngImage Added .

From Windows:

Code Block
wsl --update

Mac

  1. Install python with whatever package manager you like, if not already installed

...

Code Block
brew install python

Linux

...

and WSL

  1. Install python with whatever package manager you like, if not already installed

...

Code Block
sudo apt update
sudo apt install python3 python3-pip python3-venv

Windows

We use WSL on Windows. All commands henceforth are either from wsl (labelled wsl) or the Windows “terminal” app (labelled Windows)image-20241014-202410.pngImage Removed .

From Windows:

Code Block
wsl --update

2. Install Git

Same deal with package managers as above, but generally:

...