最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

python - Why do I see still see the missing import warning? - Stack Overflow

programmeradmin2浏览0评论

I'm still encountering a "missing import" error even though I've installed the package in my virtual environment, activated it, and verified its presence with pip list. What could be causing this issue?

The package that I have installed in virtual environment of the folder

pip install -q huggingface_hub

This is the module which was importing

import os
from huggingface_hub import InferenceClient

# os.environ["HF_TOKEN"]="hf_xxxxxxxxxxx"

client = InferenceClient("meta-llama/Llama-3.2-3B-Instruct")
# if the outputs for next cells are wrong, the free model may be overloaded. You can also use this public endpoint that contains Llama-3.2-3B-Instruct
#client = InferenceClient(";)

This is the error it's showing

ModuleNotFoundError                       Traceback (most recent call last)
Cell In[1], line 2
      1 import os
----> 2 from huggingface_hub import InferenceClient
      4 # os.environ["HF_TOKEN"]="hf_xxxxxxxxxxx"
      6 client = InferenceClient("meta-llama/Llama-3.2-3B-Instruct")

ModuleNotFoundError: No module named 'huggingface_hub'

After that, I checked whether the package was installed using pip list, which confirmed that the module was present. As shown in the image

Output of pip list in venv

发布评论

评论列表(0)

  1. 暂无评论