我正在尝试在 Amazon SageMaker 上调整开源项目mmfashion ,该项目需要CEPH模块作为后端。不幸的是pip install ceph
不起作用。唯一的解决方法是通过在我的容器中运行手动构建ceph 源代码:
!git clone git://github.com/ceph/ceph
!git submodule update --init --recursive
这确实允许我成功导入ceph
。但是在从 Amazon S3 感染数据时会引发以下错误:
AttributeError: module 'ceph' has no attribute 'S3Client'
是否有人将CEPH与 Amazon S3 Bucket 集成或在同一行中就如何解决这个问题提出了建议?