英文:
How can I solve this "cannot remove *.log" error in a GoLang backend project?
问题
我有一个GoLang后端项目。在构建这个项目时遇到了一个问题。
pkg-config --cflags -- vips vips vips vips
pkg-config: exec: "pkg-config": 在%PATH%中找不到可执行文件
我正在使用Windows 10。
我该如何解决这个问题?
英文:
I have a GoLang backend project. I have an issue when building this project.
# pkg-config --cflags -- vips vips vips vips
pkg-config: exec: "pkg-config": executable file not found in %PATH%
I am working on Windows 10.
How can I solve this issue?
答案1
得分: 1
我从这个链接中找到了解决方案。
https://stackoverflow.com/questions/1710922/how-to-install-pkg-config-in-windows
你需要在你的电脑上安装G++和其他相关的库,并注册系统环境变量。
英文:
I've found the solution from this link.
https://stackoverflow.com/questions/1710922/how-to-install-pkg-config-in-windows
You have to install G++ and other relevant libraries on your computer and register the system environment variable.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论