我的seekdb在服务端已经启动成功。
现在想在本地(windows)中实现一下seekdb的官方例子(client/server mode):
import pyseekdb
client = pyseekdb.Client(
host = "127.0.0.1", # server host
port = 2881, # server port (default: 2881)
)
# create a knowledge base
collection = client.get_or_create_collection("product_database")
可是,pyseekdb在windows是不是装不上?
uv pip install pyseekdb
× No solution found when resolving dependencies:
╰─Because pylibseekdb==1.0.0.post1 has no wheels with a matching platform tag (e.g.,
win_amd64) and only pylibseekdb==1.0.0.post1 is available, we can conclude that all versions of pylibseekdb cannot be used.
And because all versions of pyseekdb depend on pylibseekdb and you require pyseekdb, we can conclude that your requirements are unsatisfiable.
hint: Wheels are available for `pylibseekdb` (v1.0.0.post1) on the following platforms: `manylinux_2_28_aarch64`, `manylinux_2_28_x86_64`
