This file contains 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 | |
export HF_HUB_ETAG_TIMEOUT=500 | |
python -m venv venv | |
source venv/bin/activate | |
pip install Flask huggingface_hub[cli] diffusers[torch] torch torchvision transformers sentencepiece protobuf accelerate optimum-quanto | |
huggingface-cli login --token $HF_TOKEN | |
python_file="flux_on_potato.py" | |
cat << EOF > $python_file | |
import logging |