Hugging face hub How to delete

I installed the hugging face hub as a pip in vscode/ Python, but the function is twisted, so I have to delete it. Please tell me how

I just signed up on the hugging face website, so I only have an ID

1 Like

Hi shinnamju,

pip uninstall is the uninstall command on your terminal.
Therefore, pip uninstall huggingface_hub should remove that for you (if pip uninstall huggingface_hub doesn’t work, try pip3 uninstall huggingface_hub)

You will be asked ‘Proceed (Y/n)?’
Type Y then enter to proceed.

To do a check for removal afterwards, type pip show huggingface_hub (or pip3 show huggingface_hub)
If it’s successfully removed, your terminal should say ‘WARNING: Package(s) not found: huggingface_hub’

1 Like