Getting an error when attempting to install langchain-huggingface using pipenv install langchain-huggingface #28204
-
Checked other resources
Commit to Help
Example Codepipenv install langchain-huggingface DescriptionI am attempting to install huggingface in my python virtual env. using pipenv install langchain-huggingface. I get a dependency error: The conflict is caused by: which causes: raise RuntimeError("Failed to lock Pipfile.lock!") and the pkg install to fail. Any help would be greatly appreciated. System Infolangchain==0.3.7 mac Python 3.13.0 |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Issue is with python 3.13. It works fine on python 3.12 on a mac |
Beta Was this translation helpful? Give feedback.
For my workaround, I used
python3.12 -m venv venv
to create a venv with python3.12 instead of 3.13.