Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ImportError: cannot import name 'get_full_repo_name' from 'huggingface_hub' #2055

Open
Ryan-shadow opened this issue Nov 25, 2023 · 28 comments

Comments

@Ryan-shadow
Copy link

Total VRAM 6144 MB, total RAM 32509 MB
Traceback (most recent call last):
File "F:\ai\ComfyUI-master\comfy\model_management.py", line 218, in
import accelerate
File "C:\Users\Ryan\AppData\Local\Programs\Python\Python311\Lib\site-packages\accelerate_init_.py", line 3, in
from .accelerator import Accelerator
File "C:\Users\Ryan\AppData\Local\Programs\Python\Python311\Lib\site-packages\accelerate\accelerator.py", line 36, in
from .checkpointing import load_accelerator_state, load_custom_state, save_accelerator_state, save_custom_state
File "C:\Users\Ryan\AppData\Local\Programs\Python\Python311\Lib\site-packages\accelerate\checkpointing.py", line 24, in
from .utils import (
File "C:\Users\Ryan\AppData\Local\Programs\Python\Python311\Lib\site-packages\accelerate\utils_init_.py", line 148, in
from .megatron_lm import (
File "C:\Users\Ryan\AppData\Local\Programs\Python\Python311\Lib\site-packages\accelerate\utils\megatron_lm.py", line 32, in
from transformers.modeling_outputs import (
File "C:\Users\Ryan\AppData\Local\Programs\Python\Python311\Lib\site-packages\transformers_init_.py", line 26, in
from . import dependency_versions_check
File "C:\Users\Ryan\AppData\Local\Programs\Python\Python311\Lib\site-packages\transformers\dependency_versions_check.py", line 16, in
from .utils.versions import require_version, require_version_core
File "C:\Users\Ryan\AppData\Local\Programs\Python\Python311\Lib\site-packages\transformers\utils_init_.py", line 18, in
from huggingface_hub import get_full_repo_name # for backward compatibility
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
ImportError: cannot import name 'get_full_repo_name' from 'huggingface_hub' (C:\Users\Ryan\AppData\Local\Programs\Python\Python311\Lib\site-packages\huggingface_hub_init_.py)

ERROR: LOW VRAM MODE NEEDS accelerate.
Set vram state to: NORMAL_VRAM
Device: cuda:0 NVIDIA GeForce GTX 1660 SUPER : cudaMallocAsync
VAE dtype: torch.float32
Traceback (most recent call last):
File "F:\ai\ComfyUI-master\main.py", line 72, in
import execution
File "F:\ai\ComfyUI-master\execution.py", line 12, in
import nodes
File "F:\ai\ComfyUI-master\nodes.py", line 20, in
import comfy.diffusers_load
File "F:\ai\ComfyUI-master\comfy\diffusers_load.py", line 4, in
import comfy.sd
File "F:\ai\ComfyUI-master\comfy\sd.py", line 12, in
from . import clip_vision
File "F:\ai\ComfyUI-master\comfy\clip_vision.py", line 1, in
from transformers import CLIPVisionModelWithProjection, CLIPVisionConfig, modeling_utils
File "C:\Users\Ryan\AppData\Local\Programs\Python\Python311\Lib\site-packages\transformers_init_.py", line 26, in
from . import dependency_versions_check
File "C:\Users\Ryan\AppData\Local\Programs\Python\Python311\Lib\site-packages\transformers\dependency_versions_check.py", line 16, in
from .utils.versions import require_version, require_version_core
File "C:\Users\Ryan\AppData\Local\Programs\Python\Python311\Lib\site-packages\transformers\utils_init_.py", line 18, in
from huggingface_hub import get_full_repo_name # for backward compatibility
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
ImportError: cannot import name 'get_full_repo_name' from 'huggingface_hub' (C:\Users\Ryan\AppData\Local\Programs\Python\Python311\Lib\site-packages\huggingface_hub_init_.py)

@ChenDRAG
Copy link

Have you resolve your issue? @Ryan-shadow

@venshine
Copy link

venshine commented Nov 28, 2023

the same problem @comfyanonymous

@huangyichun
Copy link

the same problem

1 similar comment
@leavor
Copy link

leavor commented Dec 6, 2023

the same problem

@ltdrdata
Copy link
Contributor

ltdrdata commented Dec 6, 2023

Based on the symptoms, it appears that the package dependency is tangled. Also, judging from the error message, it seems to be using the system Python. It is recommended to use the portable version or a venv instead.

@aadityamundhalia
Copy link

I got the same issue trying to run inside conda

@ggriffin924
Copy link

Same issue here, running inside conda python 3.10 Anyone?

@gayanechilingar
Copy link

You can see: huggingface/transformers#15062 (comment)
conda install chardet

@mhdpr
Copy link

mhdpr commented Jan 15, 2024

I had the same problem and tried conda install chardet which didn't work. I solved problem using pip install transformers -U

@harborn
Copy link

harborn commented Jan 22, 2024

still has problem:
ImportError: cannot import name 'get_full_repo_name' from 'huggingface_hub'
I have tried:
conda install chardet and pip install transformers -U

@bickramjitbasu09
Copy link

bickramjitbasu09 commented Jan 22, 2024

still has problem: ImportError: cannot import name 'get_full_repo_name' from 'huggingface_hub' I have tried: conda install chardet and pip install transformers -U

Tried this but still same
error ? what is the issue ? anyone ?

@ThistleInTheSun
Copy link

try update requests,it works for me:
pip install --upgrade requests

@CrackerHax
Copy link

try update requests,it works for me: pip install --upgrade requests

Ty, worked for me

@kmuhan
Copy link

kmuhan commented Apr 8, 2024

pip install --upgrade requests did not works for me...
I also uninstalled and reinstalled transformers module.
still got ImportError: cannot import name 'get_full_repo_name' from 'huggingface_hub' (unknown location)

@shlok55
Copy link

shlok55 commented Apr 9, 2024

pip install --upgrade requests did not works for me...
I also uninstalled and reinstalled transformers module.
still got ImportError: cannot import name 'get_full_repo_name' from 'huggingface_hub'

it doesn't work for me , is there any other solutions for this ?

@sgoede
Copy link

sgoede commented Apr 15, 2024

pip install --upgrade transformers==4.39.2 worked for me.
Environment with Python 3.12.2, just try to downgrade your version of the Transformers package.

@lemo366
Copy link

lemo366 commented Apr 16, 2024

pip3 install chardet, It works for me.

@baojudezeze
Copy link

I fixed using:
conda install chardet

@tttturtle-russ
Copy link

I've tried following

conda install chardet
pip install -U transformers requests

still have the issue

@gangtoe
Copy link

gangtoe commented Apr 24, 2024

pip install --upgrade huggingface-hub==0.22.2 worked for me.

@dddwhy
Copy link

dddwhy commented Apr 28, 2024

I fixed using: 我修复了使用: conda install chardet

it works for me! i use conda!

@franck-armand
Copy link

conda install chardet should solve the problem.

@Michael98Liu
Copy link

Here is how I solved the error:
conda install chardet
pip install transformers -U

I encountered two subsequent dependency issues, which are solved by:
pip install datasets==2.16.1
pip install pyarrow==12.0.1

@officialsahyaboutorabi
Copy link

I had the same problem but was able to fix it using: conda install chardet

@Craze-H
Copy link

Craze-H commented Jun 3, 2024

I had the same problem but was able to fix it using: conda install chardet

i dont use conda. So i just try pip3 install chardet and it works.

@starryMagician
Copy link

conda install chardet also works for me.

@unknownhl
Copy link

Environment:
python 3.10.14
transformers 4.41.2

conda install chardet works for me.

@saiteja-tally
Copy link

Environment:
python 3.10.14
transformers 4.41.2

conda install chardet didn't work for me.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests