1. 程式人生 > >Python安裝一些包時用到的系統層面的依賴

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  後再嘗試安裝。