问题
在 Termux 上搭私人博客时,使用 pip 安装依赖,安装一些库比如 Pillow 和 cffi 时出现如下图错误:

In file included from src/_imaging.c:74:
/data/data/com.termux/files/usr/include/python3.6m/Python.h:39:10: fatal error: 'crypt.h' file not found
#include <crypt.h>
^~~~~~~~~
1 error generated.
error: command 'arm-linux-androideabi-clang' failed with exit status 1
解决办法
安装 libcrypt-dev,具体如下:
pkg install libcrypt-dev
参考资料:
https://github.com/theimpostor/termux-vim-ycm/issues/1
https://github.com/termux/termux-packages/issues/1142
https://github.com/termux/termux-packages/issues/1964
在Termux环境中搭建私人博客,使用pip安装特定库时遇到'crypt.h'文件未找到的问题。为了解决这个问题,可以尝试安装相关依赖。参照GitHub上的相关issue讨论,如theimpostor/termux-vim-ycm和termux/termux-packages的issue,可能的解决方法是安装缺失的依赖包。
442

被折叠的 条评论
为什么被折叠?



