如何在Windows上为python安装boto库?

Iro*_*ang 12 python install boto

我正在使用windows 7系统和python编程.我该如何安装botowindows7

Aja*_*air 8

将boto软件包下载到您的计算机上,请说:http://boto.googlecode.com/files/boto-2.6.0.tar.gz

解压缩它.使用CMD提示遍历解压缩的文件夹.

并运行以下命令:

setup.py install
Run Code Online (Sandbox Code Playgroud)

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

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

pip install -U boto
Run Code Online (Sandbox Code Playgroud)

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


Alt*_*eez 5

答案在github上boto存储库中给出

$ git clone git://github.com/boto/boto.git
$ cd boto
$ python setup.py install
Run Code Online (Sandbox Code Playgroud)