about hugging face install in anacovda cloud juypternote
i try to install the huggging face module as below:
but still got error:
can anyone help? .......................................................................................................
THX
!pip install huggingface_hub -q
!conda install -c huggingface huggingface_hub
but still got error as:
---------------------------------------------------------------------------
ModuleNotFoundError Traceback (most recent call last)
Input In [8], in | ()
2 # Source - https://stackoverflow.com/a/74127613
3 # Posted by Kirill Fedyanin, modified by community. See post 'Timeline' for change history
4 # Retrieved 2026-05-27, License - CC BY-SA 4.0
5 get_ipython().system('conda install -c huggingface huggingface_hub')
----> 7 from huggingface_hub import snapshot_download
8 snapshot_download(
9 repo_id="fishaudio/s2-pro",
10 local_dir="/content/fish-speech/checkpoints/s2-pro"
11 )
ModuleNotFoundError: No module named 'huggingface_hub'
can any one help me
|