英文:
Resolving dependencies fails on boto3 and s3fs using poetry
问题
我可以使用以下命令安装boto3、s3fs和pandas:
pip install boto3 pandas s3fs
但使用poetry时会失败:
poetry add boto3 pandas s3fs
以下是错误信息:
因为没有与s3fs匹配的版本 >2023.3.0,<2024.0.0,而s3fs (2023.3.0) 依赖于aiobotocore (>=2.4.2,<2.5.0),所以s3fs (>=2023.3.0,<2024.0.0) 需要aiobotocore (>=2.4.2,<2.5.0)。
因为没有与aiobotocore匹配的版本 >2.4.2,<2.5.0,而aiobotocore (2.4.2) 依赖于botocore (>=1.27.59,<1.27.60),所以s3fs (>=2023.3.0,<2024.0.0) 需要botocore (>=1.27.59,<1.27.60)。
因为boto3 (1.26.91) 依赖于botocore (>=1.29.91,<1.30.0),而没有与boto3匹配的版本 >1.26.91,<2.0.0,所以s3fs (>=2023.3.0,<2024.0.0) 与boto3 (>=1.26.91,<2.0.0) 不兼容。
因此,由于engexploit-k8s-pod-operator-images同时依赖于boto3 (^1.26.91) 和s3fs (^2023.3.0),版本解决失败。
英文:
I can install boto3, s3fs and pandas using :
pip install boto3 pandas s3fs
But it fails with poetry :
poetry add boto3 pandas s3fs
Here is the error :
Because no versions of s3fs match >2023.3.0,<2024.0.0
and s3fs (2023.3.0) depends on aiobotocore (>=2.4.2,<2.5.0), s3fs (>=2023.3.0,<2024.0.0) requires aiobotocore (>=2.4.2,<2.5.0).
And because no versions of aiobotocore match >2.4.2,<2.5.0
and aiobotocore (2.4.2) depends on botocore (>=1.27.59,<1.27.60), s3fs (>=2023.3.0,<2024.0.0) requires botocore (>=1.27.59,<1.27.60).
And because boto3 (1.26.91) depends on botocore (>=1.29.91,<1.30.0)
and no versions of boto3 match >1.26.91,<2.0.0, s3fs (>=2023.3.0,<2024.0.0) is incompatible with boto3 (>=1.26.91,<2.0.0).
So, because engexploit-k8s-pod-operator-images depends on both boto3 (^1.26.91) and s3fs (^2023.3.0), version solving failed.
答案1
得分: 0
我曾经通过pandas.read_csv方法使用s3fs。我只使用boto3解决了这个问题,就像这个答案中所述。
英文:
I was using s3fs through the pandas.read_csv method. I solved the question using only boto3, like in this answer.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论