0

I keep seeing this error constantly and I tried copying the ssleay32.dll to the systems directory and the error still happens .

Could someone please help me how to fix it ?

<...>
Collecting pyOpenSSL==0.13.1 (from -r requirements.txt)
  Using cached pyOpenSSL-0.13.1.tar.gz
    Complete output from command python setup.py egg_info:
    running egg_info
    creating pip-egg-info\pyOpenSSL.egg-info
    creating pip-egg-info\pyOpenSSL.egg-info\PKG-INFO
    writing top-level names to pip-egg-info\pyOpenSSL.egg-info\top_level.txt
    writing dependency_links to pip-egg-info\pyOpenSSL.egg-info\dependency_links.txt
    writing manifest file 'pip-egg-info\pyOpenSSL.egg-info\SOURCES.txt'
    warning: manifest_maker: standard file '-c' not found

    error: could not find 'ssleay32.dll'

    ----------------------------------------
Command "python setup.py egg_info" failed with error code 1 in c:\users\niyer\desktop\temp\pip-build-zgixxx\pyOpenSSL\
ivan_pozdeev
  • 33,874
  • 19
  • 107
  • 152

1 Answers1

0

0.13.1 is a very old version. The current one (as of this writing) is 16.1.0. The code for the message is not even in the repo anymore. Are you really specifically interested in such an old codebase?

The new version relies on a statically linked version of openssl in its dependency module, cryptography, so you don't need to worry about having it elsewhere any longer.

ivan_pozdeev
  • 33,874
  • 19
  • 107
  • 152