Installing YOLO
A beginner's guide to installing YOLO on your computer, even if you've never used a command line before.
Step 1: Opening Terminal
First, let's open Terminal on your Mac:
- Press Command (⌘) + Space to open Spotlight
- Type "Terminal"
- Click the Terminal app or press Enter
Step 2: Installing YOLO
Copy and paste this command into your terminal:
curl -fsSL https://raw.githubusercontent.com/baudevs/yolo.baudevs.com/main/install.sh | shThis command:
- Downloads our installation script
- Sets up YOLO on your computer
- Adds it to your system PATH
Step 3: Verify Installation
Check if YOLO was installed correctly:
Run this command:
yolo --versionYou should see something like:
YOLO version 1.2.3Step 4: Quick Setup
Configure YOLO with this command:
yolo initYou'll be asked for:
- Your name (for commit messages)
- Your email
- Your preferred AI provider
- Your API keys (optional)
Step 5: Try It Out!
Let's verify everything works:
Run your first command:
yolo helloYou should see a friendly welcome message!
Next Steps
Try these beginner-friendly commands:
yolo help- See all available commandsyolo new- Start a new projectyolo status- Check your project status
Need help? Check out our documentation or join our community.
