Skip to content Skip to sidebar Skip to footer

How To Install Opencv-python On Amazon Elastic Beanstalk

I've been developing a Python application locally, and now want to deploy it to Amazon Elastic Beanstalk, but I have hit the following error: Downloading/unpacking opencv-python==2

Solution 1:

Here are some options if you are able to consider workarounds.

With AWS Elastic Beanstalk

Without AWS Elastic Beanstalk

Solution 2:

The easy workaround for now, is to install pip 1.2.1, which does not require SSL:

curl -O https://pypi.python.org/packages/source/p/pip/pip-1.2.1.tar.gz
tar xvfz pip-1.2.1.tar.gz
cd pip-1.2.1
python setup.py install

Maybe that can help you

Solution 3:

I am running OpenCV with Python support on Amazon EC2 on dedicated instances of Ubuntu 14.04. I had to install and compile from source to get a reliable stack with python.

Post a Comment for "How To Install Opencv-python On Amazon Elastic Beanstalk"