git aws.push: No module named boto

感情迁移 提交于 2019-12-03 04:58:50

On OSX I found that pip install boto did not resolve the issue. The problem was that python was not pointing to the pip installation. export PYTHONPATH=/usr/local/lib/python2.7/site-packages resolved this for me.

Andy Jarrett

I solved this separately by running:

$ sudo easy_install pip

This uses the default python package installer to install PIP

$ sudo pip install boto 

I needed Admin rights to add boto (I don't know if thats right or not).

Then ran $ eb start

Did you pip freeze > requirements.txt after you ran pip install boto?

You need to update your requirements.txt after each time you install a new python package locally to ensure your AWS instance has all the required packages as well.

EDIT:

In case you aren't the one who wrote boto in, you'll need to install it and then pip freeze it yourself.

Try running the following commands:

pip install boto
pip freeze > requirements.txt
git add .
git commit -m "Added boto"
git aws.push

I had a similar issue with Ansible and fixed it using:

sudo apt install python-boto
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!