在Amazon EC2实例(CentOS)上使用pip安装mitmproxy的问题

时间:2016-06-19 23:31:12

标签: amazon-ec2 centos pip mitmproxy libffi

我正在尝试使用pip在我的EC2 linux实例上安装mitproxy:

sudo pip install mitmproxy

我安装了python2.7,现在有2个libffi实例

$ rpm -qa | grep libff libffi-3.0.13-11.4.amzn1.x86_64 libffi-devel-3.0.13-11.4.amzn1.x86_64

但每次我尝试运行install命令时都会收到以下错误消息:

gcc -pthread -fno-strict-aliasing -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -fPIC -I/usr/include/python2.7 -c build/temp.linux-x86_64-2.7/_openssl.c -o build/temp.linux-x86_64-2.7/build/temp.linux-x86_64-2.7/_openssl.o build/temp.linux-x86_64-2.7/_openssl.c:423:30: fatal error: openssl/opensslv.h: No such file or directory #include <openssl/opensslv.h> ^ compilation terminated. error: command 'gcc' failed with exit status 1

我想出错的任何想法?

1 个答案:

答案 0 :(得分:-1)

通过以下解决方案解决了问题:

  1. 来自https://www.openssl.org/source/
  2. 的wget源代码gzip包
  3. config&amp;&amp; make&amp;&amp; make install
  4. 祝你好运!