Skip to content

Instantly share code, notes, and snippets.

@Tknott95
Created August 8, 2023 21:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Tknott95/f354e646ec9a79d659e8b870707599be to your computer and use it in GitHub Desktop.
Save Tknott95/f354e646ec9a79d659e8b870707599be to your computer and use it in GitHub Desktop.
install.sh way of doing 00
#!/bin/sh
pkgs=("huggingface_hub" "python-dotenv" "openai")
for pkg in "${pkgs[@]}"; do
echo -e '\n INSTALLING: ' + $pkg
pip install $pkg
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment