如何安装boto?
这样我就可以在我的 python 脚本中使用它了?
So that I am able to work with it within my python scripts?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
这样我就可以在我的 python 脚本中使用它了?
So that I am able to work with it within my python scripts?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(9)
如有必要,安装 pip:
sudo apt-get install python-pip
然后安装 boto:
pip install -U boto
If necessary, install pip:
sudo apt-get install python-pip
Then install boto:
pip install -U boto
安装 Boto 取决于操作系统。
例如,在 Ubuntu 中,您可以使用 aptitude 命令:
或者您可以从他们的站点下载 boto 代码并移至解压目录中运行
Installing Boto depends on the Operating system.
For e.g in Ubuntu you can use the aptitude command:
Or you can download the boto code from their site and move into the unzipped directory to run
编辑:pip 现在是迄今为止安装软件包的首选方式
Edit: pip is now by far the preferred way to install packages
切换到
boto-*
目录并输入python setup.py install
。switch to the
boto-*
directory and typepython setup.py install
.安装pip:https://pip.pypa.io/en/latest/installing .html
insatll boto: https://github.com/博托/博托
$ git 克隆 git://github.com/boto/boto.git
$ cd 波托
$ python setup.py install
install pip: https://pip.pypa.io/en/latest/installing.html
insatll boto: https://github.com/boto/boto
$ git clone git://github.com/boto/boto.git
$ cd boto
$ python setup.py install
我认为安装 boto 的最佳方法是使用:
这可以确保您拥有 boto glacier 代码。
Best way to install boto in my opinion is to use:
This ensures you'll have the boto glacier code.
如果您已经在一个 python 版本中安装了 boto,然后安装更高版本的 python,则新版本的 python 找不到 boto。
例如,我有python2.7,然后安装了python3.5(保留两者)。我在python3.5下的脚本找不到boto。执行“
pip install boto
”告诉我 boto 已经安装在/usr/lib/python2.7/dist-packages
中。所以我做了
这让我的脚本在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
This allowed my script under python3.5 to find boto.
在尝试该
命令时,我遇到错误
要解决此问题,请使用curl发出另一个命令来处理setuptools
执行此操作后,以下命令将完美运行。
While trying out the
command, I encounter the error
To resolve this, issue another command to handle the setuptools using curl
After doing that, the following command will work perfectly.
如果您使用的是 Mac,到目前为止最简单的安装方法是使用
easy_install
If you're on a mac, by far the simplest way to install is to use
easy_install