安装 python-snappy 时报错,提示 snappy-c.h 或 Python.h 找不到
机器:centOS
报错1
安装 pip3 install python-snappy 时报错:
snappy-c.h: No such file or directory
解决方法:
安装 snappy C library 针对 centOS 的命令:sudo yum install snappy-devel 参考链接:https://stackoverflow.com/questions/11416024/error-installing-python-snappy-snappy-c-h-no-such-file-or-directory
报错2
安装 pip3 install python-snappy 时又报错:
Python.h: No such file or directory
解决方法1: 使用 python-sanppy 源码进行安装
源码位置:https://github.com/andrix/python-snappy Build:python setup.py build 依旧报错:Python.h: No such file or directory
解决方法2: 需要安装:python3-devel
针对centOS:yum search python3 | grep devel 找到对应存在的资源:sudo yum install python3-devel 安装完成后 执行:python setup.py build 再 sudo python setup.py install 或者 pip3 install python-snappy
成功解决!
|