Find answers from the community

Updated 2 years ago

Fsspec install

At a glance
The community members are discussing an issue with installing the llama-index library. The original poster tried installing Python 3.11, but that did not resolve the issue. The comments suggest that the issue may be related to the Python version or the pip version. Community members recommend using a Docker image with Python 3.8 or greater, as installing new Python versions can cause problems. They also suggest checking the requirements for the fsspec library and running a verbose pip install to get more information about the issue. One community member points to a related issue with the fsspec library and suggests that a minimum Python version of 3.8 may be reasonable.
Useful resources
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