Ruby Gem 和 Sanitize 的问题
我正在尝试安装 Ruby gem sanitize。我已经安装了 nokogiri:
>gem list nokogiri
*** LOCAL GEMS ***
nokogiri (1.4.0)
但是当我尝试安装 sanitize 时出现以下错误:
>gem install rgrove-sanitize
ERROR: Error installing rgrove-sanitize:
rgrove-sanitize requires nokogiri (~> 1.3.3, runtime)
I'm trying to install the Ruby gem sanitize. I've already installed nokogiri:
>gem list nokogiri
*** LOCAL GEMS ***
nokogiri (1.4.0)
but when I try and install sanitize I get the following error:
>gem install rgrove-sanitize
ERROR: Error installing rgrove-sanitize:
rgrove-sanitize requires nokogiri (~> 1.3.3, runtime)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
rgrove-sanitize 使用 悲观运算符,在本例中,这意味着您需要 1.3.3 或更高版本的 Nokogiri 版本,但低于 1.4(您拥有的版本)。您需要安装正确版本的 Nokogiri:
rgrove-sanitize uses the pessimistic operator, which, in this case, means you need a Nokogiri version of 1.3.3 or greater, but less than 1.4 (which is what you have). You need to install the correct version of Nokogiri: