Course Resources
Intro to AI Development Resources
Quick references, setup links, and copy-paste commands for this course.
Copy-Paste Commands
Windows Setup Commands
Core commands used at the beginning of class.
winget --version
Add-AppxPackage -RegisterByFamilyName -MainPackage Microsoft.DesktopAppInstaller_8wekyb3d8bbwe
winget install -e --id CoreyButler.NVMforWindows
nvm install 24.15.0
nvm use 24.15.0
node -v
npm -v
npm install -g @openai/codex
codexOptional Claude Code Command
Install Claude Code if the instructor wants to show both agent tools.
npm install -g @anthropic-ai/claude-codePython Game Environment
Use this inside Anaconda Prompt or PowerShell after Anaconda is installed.
conda create -n alien-shooter python=3.12 -y
conda activate alien-shooter
pip install pygame-ce
python --versionReference Links
WinGet Documentation
Microsoft's official Windows Package Manager documentation.
https://learn.microsoft.com/en-us/windows/package-manager/winget/nvm-windows Releases
Download the latest nvm-setup.exe installer for Windows.
https://github.com/coreybutler/nvm-windows/releasesAnaconda Download
Official Anaconda download page for Navigator and conda.
https://www.anaconda.com/downloadAnaconda Windows Install Guide
Official graphical installer instructions for Windows.
https://www.anaconda.com/docs/getting-started/anaconda/install/windows-gui-installOpenAI Codex CLI
Official OpenAI Codex repository and install instructions.
https://github.com/openai/codex