Skip to content

Instantly share code, notes, and snippets.

@bobbravo2
Last active January 17, 2025 15:46
Show Gist options
  • Save bobbravo2/11aa1ec03a7b239eb7b89e33feb67319 to your computer and use it in GitHub Desktop.
Save bobbravo2/11aa1ec03a7b239eb7b89e33feb67319 to your computer and use it in GitHub Desktop.
#!/bin/bash
echo "cloning instructlab"
git clone https://github.com/instructlab/instructlab.git
echo "Creating a new venv"
python3 -m venv --upgrade-deps venv
echo "Activating venv"
source venv/bin/activate
echo "Installing..."
pip install instructlab
echo "Initializing default config"
ilab init
echo "Downloading models, this will be a few minutes"
ilab model download
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment