如果有一種相對簡單的方法可以讓+ libxml2 + gokogiri在Windows上工作?Go lang:如何在windows上安裝libxml2/gokogiri
我的意思是我可能會安裝它(但目前我不能,與Package libxml-2.0 was not found in the pkg-config search path
卡住),但然後我需要提供我的實用程序給其他人,誰將永遠不能(或希望)安裝拉爾libxml2的依賴關係,修改Windows路徑等等
它工作在Ubuntu完美無瑕......
我發現這個https://github.com/moovweb/gokogiri/issues/49這就是有趣的與安裝瘸子2(什麼?!),但我還是不能讓它運行這樣的錯誤,我想可能是PATH的問題,但所有PATH都設置爲
$ go get github.com/moovweb/gokogiri
# github.com/moovweb/gokogiri/help
Documents\go\src\github.com\moovweb\gokogiri\help\help.go:6:25: fatal error: lib
xml/tree.h: No such file or directory
#include <libxml/tree.h>
^
compilation terminated.
# github.com/moovweb/gokogiri/xpath
Documents\go\src\github.com\moovweb\gokogiri\xpath\expression.go:4:26: fatal err
or: libxml/xpath.h: No such file or directory
#include <libxml/xpath.h>
^
compilation terminated.
您已驗證路徑+'/libxml/tree.h | xpath.h'的子部分存在嗎?錯誤只是說這些文件不存在,所以如果它們存在,那麼問題幾乎肯定是你的路徑。至於爲其他人提供你的工具,你可能會想要一個批處理腳本。 – evanmcdonnal
是的,我很害怕那批腳本,太多的努力...可能是我只是用html標準庫重寫...甚至是正則表達式...我會再次檢查PATH明天... – MikeKlemin