如何在Linux环境中安装pyhs2?

时间:2018-06-24 07:24:02

标签: linux python-3.x pip

方法

我使用:

sudo pip3 install pyhs2

但是它不起作用。

问题

如图所示显示此错误。

enter image description here

问题

在这种情况下,如何在Linux环境中安装“ pyhs2”库

1 个答案:

答案 0 :(得分:1)

您显示的输出中明显有错误:

fatal error: sasl/sasl.h: No such file or directory.

在安装过程中尝试编译某些C代码时,会发生此错误。该错误告诉您系统缺少某些C头文件(可能还有相应的库)。在Red Hat风格的系统(Red Hat,CentOS,Fedora等)上,您需要运行:

yum install cyrus-sasl-devel

在Debian风格的系统(Debian,Ubuntu)上,您需要运行:

apt-get update
apt-get install libsasl2-dev