Skip to content

Add pyOpenSSL as a dependency

Christian Pietsch requested to merge CristianCantoro:master into master

Created by: CristianCantoro

I download the repo and started from a fresh virtualenv and I was getting this error:

$ python app.py    
Traceback (most recent call last):
  File "app.py", line 46, in <module>
    import urllib3.contrib.pyopenssl
  File "/home/cristian/.virtualenvs/oabot2/lib/python2.7/site-packages/urllib3/contrib/pyopenssl.py", line 46, in <module>
    import OpenSSL.SSL
ImportError: No module named OpenSSL.SSL

Install the modeule pyOpenSSL solved the problem:

$ pip install pyopenssl   

Merge request reports