英文:
Getting hnswlib error Index' has no attribute 'file_handle_count'
问题
我正在尝试使用 chromadb
,但出现了错误:
c:\Users\satya\AppData\Local\Programs\Python\Python39\lib\site-packages\chromadb\config.py 中的实例(self, type)
hnswlib_count = hnswlib.Index.file_handle_count
hnswlib_count = cast(int, hnswlib_count)
AttributeError: 类型对象 'hnswlib.Index' 没有属性 'file_handle_count'
我正在使用 Python3.9
,hnswlib
和 chromadb
的版本如下:
PS C:\Users\satya> pip show hnswlib
名称: hnswlib
版本: 0.7.0
摘要: hnswlib
主页: https://github.com/yurymalkov/hnsw
作者: Yury Malkov 和其他人
作者邮箱:
许可证:
位置: c:\users\satya\appdata\local\programs\python\python39\lib\site-packages
依赖: numpy
被依赖:
PS C:\Users\satya> pip show chromadb
名称: chromadb
版本: 0.4.5
摘要: Chroma.
主页:
作者:
作者邮箱: Jeff Huber <jeff@trychroma.com>, Anton Troynikov <anton@trychroma.com>
许可证:
位置: c:\users\satya\appdata\local\programs\python\python39\lib\site-packages
依赖: chroma-hnswlib, fastapi, importlib-resources, numpy, onnxruntime, overrides, posthog, pulsar-client, pydantic, pypika, requests, tokenizers, tqdm, typing-extensions, uvicorn
被依赖:
请注意,这是您提供的内容的翻译。
英文:
I am trying to use chromadb
which is giving me error:
c:\Users\satya\AppData\Local\Programs\Python\Python39\lib\site-packages\chromadb\config.py in instance(self, type)
hnswlib_count = hnswlib.Index.file_handle_count
hnswlib_count = cast(int, hnswlib_count)
AttributeError: type object 'hnswlib.Index' has no attribute 'file_handle_count'
I am using Python3.9
and versions of hnswlib
and chromadb
are:
PS C:\Users\satya> pip show hnswlib
Name: hnswlib
Version: 0.7.0
Summary: hnswlib
Home-page: https://github.com/yurymalkov/hnsw
Author: Yury Malkov and others
Author-email:
License:
Location: c:\users\satya\appdata\local\programs\python\python39\lib\site-packages
Requires: numpy
Required-by:
PS C:\Users\satya> pip show chromadb
Name: chromadb
Version: 0.4.5
Summary: Chroma.
Home-page:
Author:
Author-email: Jeff Huber <jeff@trychroma.com>, Anton Troynikov <anton@trychroma.com>
License:
Location: c:\users\satya\appdata\local\programs\python\python39\lib\site-packages
Requires: chroma-hnswlib, fastapi, importlib-resources, numpy, onnxruntime, overrides, posthog, pulsar-client, pydantic, pypika, requests, tokenizers, tqdm, typing-extensions, uvicorn
Required-by:
答案1
得分: 1
使用chromadb==0.4.3版本帮助我解决了与Python 3.9的问题。
英文:
Using the chromadb==0.4.3 version helped me to resolve the issue with python 3.9
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论