Anyone know any good cmd's for downloading files in Jupyter Notebook?
I'm trying to download flux off huggingface. I've been using wget, aria2 and cURL, but none of them are working for me.
aria2c -x 16 --header="Authorization: Bearer <huggingface token>" -o flux.safetensors "https://huggingface.co/black-forest-labs/FLUX.1-dev/blob/main/flux1-dev.safetensors"
wget --header="Authorization: Bearer <huggingface token>" -o flux.safetensors "https://huggingface.co/black-forest-labs/FLUX.1-dev/blob/main/flux1-dev.safetensors"
curl -L -H "Authorization: Bearer <huggingface token>" -o flux.safetensors "https://huggingface.co/black-forest-labs/FLUX.1-dev/blob/main/flux1-dev.safetensors"
these are the commands i've tried.

1 Reply
Unknown User•11mo ago
Message Not Public
Sign In & Join Server To View