Python安装一些包时用到的系统层面的依赖

注:以下解决方法均以CentOS7.3环境(已配置好可用yum源)为例,其他操作系统可能会有所区别。

【1】、安装cffi报错:c/_cffi_backend.c:15:17: fatal error: ffi.h: No such file or directory

解决:执行  yum install libffi-devel  后再尝试安装。

【2】、安装cryptography报错:build/temp.linux-x86_64-3.5/_opensshl.c:434:30: fatal error: openssl/opensslv.h:No such file or directory

解决:执行  yum install -y openssl openssl-devel  后再尝试安装。

 

你可能感兴趣的:(python)