Last active
January 17, 2025 15:46
-
-
Save bobbravo2/11aa1ec03a7b239eb7b89e33feb67319 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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