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