官网
1 官网地址:https://docs.trychroma.com/getting-started
步骤
有两种方式:1,通过pip install ; 2 运行docker。
本教程通过pip install 方式:
pip3 install chromadb
报错:
Failed to build chroma-hnswlib
ERROR: Could not build wheels for chroma-hnswlib, which is required to install pyproject.toml-based projects
官网mac、linux、windows解决方案:https://docs.trychroma.com/troubleshooting。然而我按照步骤并未解决我的问题。
通过以下方式解决:
conda install -c conda-forge chromadb
写一个python测试程序 chromatest.py文章来源:https://www.toymoban.com/news/detail-702725.html
import chromadb
chroma_client = chromadb.Client()
pip3 chromatest.py 运行报错:
ImportError: zstd C API versions mismatch; Python bindings were not compiled/linked against expected zstd version (10505 returned by the lib, 10502 hardcoded in zstd headers, 10502 hardcoded in the cext)文章来源地址https://www.toymoban.com/news/detail-702725.html
到了这里,关于centos 安装AI 向量数据库 chroma的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!