-
Hey all, I'm trying to run the basic setup code from the docs:
I'm using python 3.11.6, vanna 0.6.0, chromadb 0.5.0, and numpy 2.0.0. Running the code above generates this error on the vanna.chromadb import line:
Can anyone point me at a solution? |
Beta Was this translation helpful? Give feedback.
Answered by
zainhoda
Jun 17, 2024
Replies: 1 comment 1 reply
-
It looks like an underlying issue with Chroma: For now, you can try this: pip uninstall numpy
pip install 'numpy<2.0.0' Either chroma has to become compatible with numpy 2.0 or they need to add the specific version to their requirements. |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
robot1125
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
It looks like an underlying issue with Chroma:
chroma-core/chroma#2358
For now, you can try this:
pip uninstall numpy pip install 'numpy<2.0.0'
Either chroma has to become compatible with numpy 2.0 or they need to add the specific version to their requirements.