Not able to install on Windows #3607
stevevestal
started this conversation in
General
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I'm trying to install on Windows. Can you give me some suggestions based on the following attempts? pip install quivr-core fails using python 3.1. pip install quivr-core --ignore-requires-python fails because there is no matching distribution found for numpy<3,>=2.0. pip install "numpy<3,>=2.0" fails because it ignored the following versions that require a different python version: 1.22.0, Could not find a version that satisfies the requirement numpy<3,>=2.0.
I created a python virtual environment with python 3.11, and pip install "numpy<3,>=2.0" and pip install quivr-core did complete. It also wanted pip install "quivr-core[ipynb]", pip install jupyter, and pip install notebook.
The python interpreter gave a number of warnings for >>> from quivr_core import Brain
C:\Users\me\git\Quivr\quivr_env\Lib\site-packages\pydantic_internal_generate_schema.py:775: UserWarning: Mixing V1 models and V2 models (or constructs, like
TypeAdapter
) is not supported. Please upgradeBasePromptTemplate
to V2.Despite installing quivr-core[ipynb] I get the error None of PyTorch, TensorFlow >= 2.0, or Flax have been found. Models won't be available and only tokenizers, configuration and file/data utilities can be used. can't import MegaparseProcessor. Please install quivr-core[.ipynb] to access MegaparseProcessor. Falling to the next available processor for FileExtension.pdf. This seemed to lead to a final error of File "C:\Users\me\git\Quivr\quivr_env\Lib\site-packages\quivr_core\processor\implementations\tika_processor.py", line 65, in _send_parse_tika raise RuntimeError("can't send parse request to tika server")
Beta Was this translation helpful? Give feedback.
All reactions