python - 我如何在 python 的 Windows 上安装 boto 库?

标签 python installation boto

我使用的是windows 7系统,python编程。我如何在 windows7 上安装 boto 库?

最佳答案

从 say: http://boto.googlecode.com/files/boto-2.6.0.tar.gz 下载 boto 包到你的电脑

解压缩。 使用 CMD 提示符遍历解压缩的文件夹。

并运行以下命令:

setup.py install

通过尝试在 python 中导入 boto 来验证安装。

如果你安装了 pip,你可以运行:

pip install -U boto

编辑:如果无法识别 setup.py install,请尝试 python setup.py install

关于python - 我如何在 python 的 Windows 上安装 boto 库?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14351373/

相关文章:

Python:使用线程求解多个线性系统

java - 如何创建安装文件服务器

python - Django:使用 PIL、Amazon S3 和 Boto 调整图像大小和上传

Python 模块未出现在 sys.modules 中

python - 如何使用 boto 检查 AWS 中的根帐户是否启用了 MFA?

python - 如何在使用 boto 上传到 s3 时进行 gzip

python - 正则表达式,用于管理诸如字符串文字之类的转义字符

python - Pandas 等级函数产生非整数?

python - 一次替换张量中的多个值的推荐方法?

installation - .NET Framework 4.0 安装程序是否也安装 .NET 3.5?