Device Setup
This page lists Software used by CodeWarriors Game Jams.
Godot#
Note: Install standard Godot, not .NET/Mono

Installation on Windows:
- Download the current stable Godot installer for Windows: https://godotengine.org/download/windows/
- Run Install.

Installation on Mac:
- Download the current stable Godot installer for Mac: https://godotengine.org/download/macos/
- Run Install.

Installation on Raspberry Pi:
- Download the current stable Godot installer for Linux - arm64: https://godotengine.org/download/linux/
- Run Install.
- Open a terminal / bash prompt.
- Run
sudo apt update - (Optional) Run
sudo apt-full-upgrade
Audacity#

Installation on Windows:
- Download the current Audacity installer for Windows: https://www.audacityteam.org/download/windows/
- Run Install.

Installation on Mac:
- Download the current stable Audacity installer for Mac: https://www.audacityteam.org/download/mac/
- Run Install.

Installation on Raspberry Pi:
- Download the current stable Godot installer for Linux: https://www.audacityteam.org/download/linux/
(optional / for advanced students)
GIT#

Installation on Windows:
- Download the current git “maintained build” from the “Click here to download” link on: https://git-scm.com/install/windows
- Run the Setup.
- Initial git config:
- Run
git config --global user.name "{your name}" - Run
git config --global user.email "{your.email@example.com}"
- Run

Installation on Mac:
- Open a
terminalwindow - If you haven’t installed homebrew already, install it:
- Run the command to install Homebrew, listed on this page: https://brew.sh/
- Run
brew install git - Initial git config:
- Run
git config --global user.name "{your name}" - Run
git config --global user.email "{your.email@example.com}"
- Run

Installation on Raspberry Pi:
- git is probably already installed on your Raspberry Pi. Confirm this by opening a terminal and running:
git --version - If git is not installed, then do the steps below:
- Run
sudo apt update - Run
sudo apt install git
- Run
- Verify install success by opening a terminal window and typing
git --version - Initial git config:
- Run
git config --global user.name "{your name}" - Run
git config --global user.email "{your.email@example.com}"
- Run

