42๐
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.
17๐
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
- Django Test Client post() returns 302 despite error on view's post()
- Making Twitter, Tastypie, Django, XAuth and iOS work to Build Django-based Access Permissions
- Django model inheritance and type check
- How to append pages of data using jQuery and Django pagination?
4๐
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
2๐
I had a similar issue with Ansible and fixed it using:
sudo apt install python-boto
0๐
I am using python3. So I had to use the following command for PYTHONPATH
to point to site-packages dir
export PYTHONPATH=/usr/local/lib/python3.8/site-packages
- Django: WSGIRequest' object has no attribute 'user' on some pages?
- How to test (using unittest) the HTML output of a Django view?
- Paypal monthly subscription plan settings for first day of the month and making monthly recurring payment โ django python
- How to use ModelMultipleChoiceFilter?
0๐
If youโre using ubuntu, try this out:-
sudo apt install python-boto3
Should work.
- Django, REST and Angular Routes
- Pycharm (Python IDE) doesn't auto complete Django modules
- Django โ authentication, registration with email confirmation
- How can my Model primary key start with a specific number?