【问题标题】:Installing Boto3 with Different botocore使用不同的 botocore 安装 Boto3
【发布时间】:2026-01-11 15:00:01
【问题描述】:

Boto3 is using their own botocore(这是有道理的)。

但是,exiting botocore 不支持我非常想使用的新 Transcribe API

我想使用实现转录服务的this forked botocore

为了使用分叉的 botocore 安装 Boto3,我应该遵循哪些步骤?

有没有使用pip install 的简单方法来实现这一点?

【问题讨论】:

  • 问问那个分叉的创建者他/他会建议什么是最简单的使用它的方法?让他们将该信息添加到自述文件中。
  • 试试这篇文章:*.com/questions/18485933/…

标签: python amazon-web-services github pip


【解决方案1】:

最简单的方法:

  1. fork 原始 repo (boto3)
  2. 编辑 requirments.txt 以使用您需要的依赖项(其他 botocore)
  3. pip 安装您的分叉存储库

为我工作

【讨论】: