Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已经像这样安装了 boto: python setup.py install; 然后当我在 shell 上启动我的 python 脚本(从 boto 导入模块)时,会出现这样的错误: ImportError: No module named boto.s3.connection
怎么解决这个问题?
我使用 Ubuntu 解决了同样的问题apt-get install python-boto
apt-get install python-boto
如果 Python 脚本不使用您的默认python可执行文件,则可能会发生这种情况。检查脚本第一行(在 *nix 上)或 .py 文件关联(在 Windows 上)上的 shebang,然后针对 setup.py 运行它。
python