Goal: Install all the necessary tools and create your accounts to start building web-based psychology experiments.
You will need to install the following free tools to build, manage, and deploy your experiment:
Follow these steps in order to set up your development environment:
username.github.ioRecommended: Cursor (AI-powered coding assistant)
Alternative: VS Code
Windows:
git --version
Mac:
git --version (this will prompt installation if needed)brew install git
Linux:
Ubuntu/Debian:
sudo apt updatesudo apt install git
CentOS/RHEL/Fedora:
sudo dnf install git
or for older versions:
sudo yum install git
Arch Linux:
sudo pacman -S git
Verify installation:
git --version
Open your terminal/command prompt and run these commands with your actual information:
git config --global user.name "Your Name"
git config --global user.email "your.email@example.com"