如何安装boto?

发布于 2024-08-25 16:00:14 字数 32 浏览 7 评论 0原文

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

So that I am able to work with it within my python scripts?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(9

心在旅行 2024-09-01 16:00:14
  1. 如有必要,安装 pip:

    sudo apt-get install python-pip

  2. 然后安装 boto:

    pip install -U boto

  1. If necessary, install pip:

    sudo apt-get install python-pip

  2. Then install boto:

    pip install -U boto

墨离汐 2024-09-01 16:00:14

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

sudo apt-get install python-boto

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

python setup.py install

Installing Boto depends on the Operating system.
For e.g in Ubuntu you can use the aptitude command:

sudo apt-get install python-boto

Or you can download the boto code from their site and move into the unzipped directory to run

python setup.py install
孤檠 2024-09-01 16:00:14
$ easy_install boto

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

$ easy_install boto

Edit: pip is now by far the preferred way to install packages

坏尐絯 2024-09-01 16:00:14

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

switch to the boto-* directory and type python setup.py install.

木森分化 2024-09-01 16:00:14
  1. 安装pip:https://pip.pypa.io/en/latest/installing .html

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

    $ git 克隆 git://github.com/boto/boto.git
    $ cd 波托
    $ python setup.py install

  1. install pip: 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

往昔成烟 2024-09-01 16:00:14

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

pip install boto-1.6 

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

Best way to install boto in my opinion is to use:

pip install boto-1.6 

This ensures you'll have the boto glacier code.

说不完的你爱 2024-09-01 16:00:14

如果您已经在一个 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。

If you already have boto installed in one python version and then install a higher python version, boto is not found by the new version of python.

For example, I had python2.7 and then installed python3.5 (keeping both). My script under python3.5 could not find boto. Doing "pip install boto" told me that boto was already installed in /usr/lib/python2.7/dist-packages.

So I did

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

This allowed my script under python3.5 to find boto.

奶茶白久 2024-09-01 16:00:14

在尝试该

pip install boto

命令时,我遇到错误

ImportError: No module named pkg_resources

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

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

执行此操作后,以下命令将完美运行。

pip install boto

While trying out the

pip install boto

command, I encounter the error

ImportError: No module named pkg_resources

To resolve this, issue another command to handle the setuptools using curl

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

After doing that, the following command will work perfectly.

pip install boto
泪冰清 2024-09-01 16:00:14

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

sudo easy_install boto3

If you're on a mac, by far the simplest way to install is to use easy_install

sudo easy_install boto3
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文