51

这样我就可以在我的 python 脚本中使用它了吗?

4

9 回答 9

73
  1. 如有必要,安装 pip:

    sudo apt-get install python-pip

  2. 然后安装boto:

    pip install -U boto

于 2011-11-19T03:08:19.143 回答
35

安装 Boto 取决于操作系统。例如,在 Ubuntu 中,您可以使用 aptitude 命令:

sudo apt-get install python-boto

或者您可以从他们的网站下载 boto 代码并移动到解压缩的目录中运行

python setup.py install
于 2010-08-30T18:08:24.620 回答
15
$ easy_install boto

编辑:pip 现在是安装软件包的首选方式

于 2010-03-20T00:26:28.930 回答
5

切换到boto-*目录并键入python setup.py install.

于 2010-03-20T00:15:19.753 回答
2
  1. 安装点子:https ://pip.pypa.io/en/latest/installing.html

  2. insatll boto:https ://github.com/boto/boto

    $ git clone git://github.com/boto/boto.git
    $ cd boto
    $ python setup.py install

于 2014-05-16T04:06:54.733 回答
1

我认为安装 boto 的最佳方法是使用:

pip install boto-1.6 

这可确保您拥有 boto glacier 代码。

于 2012-11-06T02:19:35.017 回答
1

如果你已经在一个python版本中安装了boto,然后再安装更高版本的python,新版本的python找不到boto。

例如,我有 python2.7,然后安装了 python3.5(保留两者)。我在python3.5下的脚本找不到boto。做“ pip install boto”告诉我boto已经安装在/usr/lib/python2.7/dist-packages.

所以我做了

pip install --target /usr/lib/python3.5/dist-packages boto

这允许我在 python3.5 下的脚本找到 boto。

于 2017-02-24T10:03:58.700 回答
1

在尝试

pip install boto

命令,我遇到错误

ImportError: No module named pkg_resources

要解决此问题,请发出另一个命令以使用 curl 处理 setuptools

curl https://bootstrap.pypa.io/ez_setup.py | python

之后,以下命令将完美运行。

pip install boto
于 2017-06-09T11:02:36.387 回答
0

如果你在 Mac 上,到目前为止最简单的安装方法是使用easy_install

sudo easy_install boto3
于 2017-10-17T16:18:57.403 回答