ellen_ai / Makefile
laurelix's picture
Upload folder using huggingface_hub
1564f7d
Raw
History Blame Contribute Delete
222 Bytes
install_req:
@-pip install --upgrade pip
@-pip install -r requirements.txt
run:
python app.py
env_load:
direnv allow .
direnv reload
first:
make install_req
make env_load
make run
all:
make env_load
make run