I am trying to install chromadb on my jupyter notebook (Anaconda) using:
pip install chromadb
I get error:
ERROR: Could not find a version that satisfies the requirement onnxruntime>=1.14.1 (from chromadb) (from versions: 1.2.0, 1.3.0, 1.4.0, 1.5.1, 1.5.2, 1.6.0, 1.7.0, 1.8.0, 1.8.1, 1.9.0, 1.10.0, 1.11.0, 1.11.1)
ERROR: No matching distribution found for onnxruntime>=1.14.1 (from chromadb)
Ok, so I run:
pip install onxruntime
And it installed onxruntime 1.11.1 But chromadb requires >1=1.14.1
I am assuming that the highest onxruntime compatible with my OS (mac) is 1.11.1. Is there a way around it?