我有一个问题,我能够安装Nokogiri:
gem install nokogiri --version
但是当我运行bundle
时,出现以下错误:
ArgumentError: Unmatched double quote: "\\'--with-xml2-include=/usr/local/Cellar/libxml2/2.8.0/include/libxml2"
An error occurred while installing nokogiri (1.8.5), and Bundler cannot continue.
Make sure that `gem install nokogiri -v '1.8.5' --source 'https://rubygems.org/'` succeeds before bundling.
在搜索具有相同问题的其他人时,我无法找到这样的东西。
这个问题导致我查看了包含以下行的~/.bundler/config
文件:
BUNDLE_BUILD__NOKOGIRI: "\'--with-xml2-include=/usr/local/Cellar/libxml2/2.8.0/include/libxml2"
我不知道为什么那个单引号在那里,或者它是如何出现的,但我尝试删除它,捆绑现在工作得很好。