继续浏览精彩内容
慕课网APP
程序员的梦工厂
打开
继续
感谢您的支持,我会继续努力的
赞赏金额会直接到老师账户
将二维码发送给自己后长按识别
微信支付
支付宝支付

安装Python cryptography的过程和遇到的问题

慕娘5729972
关注TA
已关注
手记 240
粉丝 133
获赞 772

  • 准备以下软件包: cryptography,openssl,perl(编译openssl需要)

  • 编译openssl

  • 打开vcvarsall.bat(计算机上须安装Visual Studio),在控制台命令提示符中切换到openssl目录。

  • 执行

    perl Configure VC-WIN32ms\do_ms.bat nmake -f ms\ntdll.mak如果一切顺利的话,你将会在当前目录下的out32dll目录下看到一些dll和exe等。
  • 安装cryptography

    打开vcvarsall.bat,切换到cryptography解压后的目录。键入以下命令set PATH=%PATH%;openssl源代码解压路径\out32dllset LIB=openssl源代码解压路径\out32dll;%LIB%set INCLUDE=openssl源代码解压路径\include;%INCLUDE%python setup.py install如果一切顺利,拷贝openssl源代码解压路径\out32dll目录下的libeay32.dll,ssleay32.dll到python安装位置\Lib\site-packages\cryptography-0.3-py2.7-win32.egg\cryptography

安装中曾遇到过的问题

cffi.ffiplatform.VerificationError: importing 'C:\\Python27\\lib\\site-packages\\cryptogr\_Cryptography_cffi_48bbf0ebx93c91939.pyd': DLL load failed: The operating system cannot

出现这个问题是因为为安装过程中需要libeay32.dll,ssleay32.dll

参考: getting-error-dll-load-failed-the-operating-system-cannot-run-1-python-2-7

打开App,阅读手记
0人推荐
发表评论
随时随地看视频慕课网APP