Update README to fix install of huggingfacecli command
Browse filesI ran into the issue with this method of installation that I did not have the download positional argument. Changing it to this command I added fixed that.
README.md
CHANGED
@@ -148,7 +148,7 @@ Then click Download.
|
|
148 |
I recommend using the `huggingface-hub` Python library:
|
149 |
|
150 |
```shell
|
151 |
-
pip3 install
|
152 |
```
|
153 |
|
154 |
Then you can download any individual model file to the current directory, at high speed, with a command like this:
|
|
|
148 |
I recommend using the `huggingface-hub` Python library:
|
149 |
|
150 |
```shell
|
151 |
+
pip3 install -U "huggingface_hub[cli]"
|
152 |
```
|
153 |
|
154 |
Then you can download any individual model file to the current directory, at high speed, with a command like this:
|