This page lists Software used by CodeWarriors Game Jams.

Godot#

Note: Install standard Godot, not .NET/Mono

Installation on Windows:

Installation on Mac:

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:

Installation on Mac:

Installation on Raspberry Pi:


(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}"

Installation on Mac:

  • Open a terminal window
  • If you haven’t installed homebrew already, install it:
  • 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}"

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
  • 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}"