2016-10-10 4 views
1

ich versuche installieren paramiko auf Windows 7.e Unter Fehlern jedes Mal zu sehen ist:fatal error C1083: kann nicht geöffnet werden Include-Datei: 'openssl/opensslv.h': Keine solche Datei oder das Verzeichnis

C:\Users\achayapa\AppData\Local\Programs\Common\Microsoft\Visual C++ for  Python\9.0\VC\Bin\cl.exe /c /nologo /Ox /MD /W3 /GS- /DNDEBUG Ic:\python27\include -Ic:\python27\PC /Tcbuild\temp.win32-2.7\Release\_openssl.c /Fobuild\temp.win32-2.7\Release\build\temp.win32-2.7\Release\_openssl.obj 
_openssl.c build\temp.win32-2.7\Release\_openssl.c(433) : fatal error C1083: Cannot open include file: 'openssl/opensslv.h': No such file or directory 

error: command 'C:\\Users\\achayapa\\AppData\\Local\\Programs\\Common\\Microsoft\\Visual C++for Python\\9.0\\VC\\Bin\\cl.exe' failed with exit status 2 

---------------------------------------- 
Command "c:\python27\python.exe -c "import setuptools, tokenize;__file__='c:\\users\\achayapa\\appdata\\local\\temp\\pip-build-lhlycd\\cryptography\\setup.py';exec(compile(getattr(tokenize, 'open', open)(__file__).read().replace('\r\n', '\n'), __file__, 'exec'))" install --record c:\users\achayapa\appdata\local\temp\pip-t1xtw1-record\install-record.txt --single-version-externally-managed --compile" failed with error code 1 in c:\users\achayapa\appdata\local\temp\pip-build-lhlycd\cryptography 

Versuchten Lösungen in folgenden Links erwähnt:

Fatal error C1083: Cannot open include file: 'openssl/opensslv.h'

PyopenSSL and scrapy install fails in Python 27, Win 64 Bit

unter Programme bereits installiert auf Windows:

Microsoft Visual C++ 2012 Redistributable (x86) Microsoft Visual C++ Compiler-Paket für Python 2.7 Microsoft Corporation

Antwort

0

auf CentOS, stieß ich auf das gleiche Problem. Das hat es behoben: sudo yum install openssl-devel - aber unter Windows kenne ich den analogen Befehl nicht. Es kann Ihre openssl-Bibliotheks-C-Header nicht finden. Sie müssen also entweder Ihren Python-Suchpfad ändern oder Dateien in Ihren Suchpfad verschieben.

Verwandte Themen