这样我就可以在我的 python 脚本中使用它了吗?
9 回答
如有必要,安装 pip:
sudo apt-get install python-pip
然后安装boto:
pip install -U boto
安装 Boto 取决于操作系统。例如,在 Ubuntu 中,您可以使用 aptitude 命令:
sudo apt-get install python-boto
或者您可以从他们的网站下载 boto 代码并移动到解压缩的目录中运行
python setup.py install
$ easy_install boto
编辑:pip 现在是安装软件包的首选方式
切换到boto-*
目录并键入python setup.py install
.
insatll boto:https ://github.com/boto/boto
$ git clone git://github.com/boto/boto.git
$ cd boto
$ python setup.py install
我认为安装 boto 的最佳方法是使用:
pip install boto-1.6
这可确保您拥有 boto glacier 代码。
如果你已经在一个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。
在尝试
pip install boto
命令,我遇到错误
ImportError: No module named pkg_resources
要解决此问题,请发出另一个命令以使用 curl 处理 setuptools
curl https://bootstrap.pypa.io/ez_setup.py | python
之后,以下命令将完美运行。
pip install boto
如果你在 Mac 上,到目前为止最简单的安装方法是使用easy_install
sudo easy_install boto3