Find answers from the community

Updated 2 years ago

Fsspec install

but I have already tried this
RUN apt-get update && apt-get install -y python3.11
L
M
d
8 comments
Yea looks at the requirements for fsspec, I guess the python version is not the issue here.

Tbh I'm not sure what the issue is here πŸ˜… I'm not sure what changes after 2023.1.0 that causes it to not be listed πŸ€”
Maybe it's a pip version? Theses issues are very annoying to debug lol
You can try running pip -vvv install llama-index to get very verbose outputs, maybe the issue will be in the logs
I would also use a docker image that has python3.8 or greater installed, installing new python versions can really muck around with things
thanks for your help I am still investigating what the problem might be

maybe I change base image
Attachment
image.png
Yup, Python version issues πŸ˜… yea, change the base image, should help
agree with logan to use a more recent python version from docker. this appears to be the issue: https://github.com/fsspec/filesystem_spec/pull/1184
relaxing the fsspec minimum version is reasonable, but python 3.6 is no longer supported by Python. 3.7 is also EOL in a month -- https://www.python.org/downloads/. I think it is reasonable to require 3.8 as a minimum.
Add a reply
Sign up and join the conversation on Discord