克隆 ssocr 源代码并在我的 GCP Ubuntu 中构建但在 make 命令后失败

克隆 ssocr 源代码并在我的 GCP Ubuntu 中构建但在 make 命令后失败

我运行了下面的代码

sudo apt-get update
sudo apt-get install libx11-dev
sudo apt-get install libimlib2-dev

并将“make”粘贴到 GCP 上的 ubuntu 中,但要求安装 make 包,因此我使用命令

sudo apt-get install build-essential

之后我make在 ssocr 目录中使用命令,出现以下错误消息:

make: imlib2-config: Command not found   
make: imlib2-config: Command not found   
cc -D_FORTIFY_SOURCE=2 -Wall -W -Wextra -pedantic -Werror -pedantic-errors -fstack-protector-all -O3 -c -o ssocr.o ssocr.c   
ssocr.c:21:53: fatal error: X11/Xlib.h: No such file or directory   
compilation terminated.   
<builtin>: recipe for target 'ssocr.o' failed   
make: *** [ssocr.o] Error 1   

因此请评论如何修复它。

相关内容