Hello Running web app on pythonanywhere that uses ChromaDB. Using virtual environment. Python = 3.10.5 After updating ChromaDB to latest version (Version: 0.5.18), I'm getting this error:
File "/home/.../.virtualenvs/myvirtualenv/bin/chroma", line 5, in <module> from chromadb.cli.cli import app File "/home/.../.virtualenvs/myvirtualenv/lib/python3.10/site-packages/chromadb/init.py", line 86, in <module> raise RuntimeError( RuntimeError: Your system has an unsupported version of sqlite3. Chroma requires sqlite3 >= 3.35.0.
Tried:
myvirtualenv) 12:49 ~ $ pip install -U sqlite3
and
myvirtualenv) 12:49 ~ $ pip install sqlite3
with and without version number, both gave:
ERROR: Could not find a version that satisfies the requirement sqlite3 > (from versions: none). ERROR: No matching distribution found for > sqlite3
tried from bash: same problem
pip3.10 install --user sqlite3 =>
Looking in links: /usr/share/pip-wheels. ERROR: Could not find a version that satisfies the requirement sqlite3 (from versions: none). ERROR: No matching distribution found for sqlite3
Based on web search, successfully Installed in both bash and virtual environment pysqlite3-binary:
pip install pysqlite3-binary
But I don't know how to proceed as I'm still getting chromadb error Can you please help?