0

您在此处提供 python 示例代码:https ://ibm-public-cos.github.io/crs-docs/python

作为其中的一部分,Linux 用户需要使用页面上显示的环境变量,或者在 ~/.aws 中设置文件来保存 aws 密钥。

Windows 的模拟是什么(假设这在 Windows 下有效)?

4

2 回答 2

0

如果您使用的是 Windows,我会推荐以下两种方法之一:

1) 安装Cygwin,这是在 Windows 环境中获取 bash shell 的最流行方式

2) 在您的 Windows 机器上本地安装 Ubuntu。从 Windows 10 开始,现在可以在 Windows 系统本地运行 Linux 内核 [1][2]。这也称为“Windows 上的 Ubuntu 上的 Bash”。有一个关于这个的演示非常酷的谈话

或者,您可以继续生活在纯 Windows 环境中,而是在 Windows中为您的 Python 应用程序设置环境变量。

[1] https://www.microsoft.com/en-us/store/p/ubuntu/9nblggh4msv6
[2] https://docs.microsoft.com/en-us/windows/wsl/about

于 2018-02-28T21:51:08.300 回答
0

你可以试试:

 > dir "%UserProfile%\.aws"

来源:https ://docs.aws.amazon.com/cli/latest/userguide/cli-config-files.html

或者,如果您按照您提供的链接中的链接,您将被带到 boto3 s3 库,该库描述了用于设置凭据的环境变量:http: //boto3.readthedocs.io/en/latest/guide/configuration.html

于 2018-02-28T21:29:11.110 回答