Step-by-step guide for students
The GitHub Student Developer Pack gives you free access to GitHub Copilot and other developer tools.
| Tool | Provider | Cost | Install Command |
|---|---|---|---|
| Claude Code | Anthropic | Free tier available | npm install -g @anthropic-ai/claude-code |
| Codex CLI | OpenAI | Free with ChatGPT account | npm install -g @openai/codex |
| Gemini CLI | Free with Google account | npm install -g @anthropic-ai/claude-code(check Google's latest install method) |
|
| GitHub Copilot CLI | GitHub / OpenAI | Free with Student Pack | gh extension install github/gh-copilot |
gh) — required for Copilot CLI# Install Node.js first (if not installed)
# Download from https://nodejs.org
# Claude Code
npm install -g @anthropic-ai/claude-code
# OpenAI Codex CLI
npm install -g @openai/codex
# GitHub Copilot CLI (requires gh + Student Pack)
gh auth login
gh extension install github/gh-copilot
# Verify installations
claude --version
codex --version
gh copilot --help
After installing, navigate to your project folder and run:
# Claude Code
cd ~/your-project
claude
# Codex CLI
cd ~/your-project
codex
# Copilot CLI (for terminal commands)
gh copilot suggest "how to find large files"
Each tool will prompt you to authenticate on first run.