从 boto 导入 modul2 时出现问题

发布于 2024-08-25 19:53:12 字数 161 浏览 6 评论 0原文

我已经像这样安装了 boto: python setup.py install;然后当我在 shell 上启动 python 脚本(从 boto 导入模块)时,会出现如下错误: ImportError: No module named boto.s3.connection

如何解决这个问题?

I have installed boto like so: python setup.py install; and then when I launch my python script (that imports moduls from boto) on shell, an error like this shows up: ImportError: No module named boto.s3.connection

How to settle the matter?

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

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

发布评论

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

评论(2

追风人 2024-09-01 19:53:12

我在 Ubuntu 上使用 apt-get install python-boto 修复了同样的问题

I fixed same problem at Ubuntu using apt-get install python-boto

流年已逝 2024-09-01 19:53:12

如果 Python 脚本不使用默认的 python 可执行文件,则可能会发生这种情况。检查脚本第一行的 shebang(在 *nix 上)或 .py 文件关联(在 Windows 上),然后针对 setup.py 运行它。

This can happen if the Python script does not use your default python executable. Check the shebang on the first line of the script (on *nix) or the .py file association (on Windows) and run that against setup.py instead.

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