使用 gchart (googlecharts) gem 时出错 - NameError: 未初始化的常量 Gchart
http://googlecharts.rubyforge.org/
我安装了它: sudo gem install googlecharts
它安装得很好,但每当我尝试使用它时,我都会得到: NameError:未初始化的常量 Gchart
这是我正在运行的代码:
$ irb
>> require 'gchart'
=> true
>> Gchart.line(:data => [0, 40, 10, 70, 20])
NameError: uninitialized constant Gchart
from (irb):2
http://googlecharts.rubyforge.org/
I installed it with:
sudo gem install googlecharts
It installed fine, but whenever I try to use it I get:
NameError: uninitialized constant Gchart
Here is the code I am running:
$ irb
>> require 'gchart'
=> true
>> Gchart.line(:data => [0, 40, 10, 70, 20])
NameError: uninitialized constant Gchart
from (irb):2
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
凯尔,我也遇到这个问题了。还有另一个名为 gchart 的 gem,它与 googlecharts 冲突,因为它们都在 Ruby 中使用名称“gchart”。您需要卸载 gchart:gem uninstall gchart 并可能重新安装 googlecharts。
Kale, I had this problem too. There's another gem called gchart which conflicts with googlecharts as they both use the name 'gchart' in Ruby. You need to uninstall gchart: gem uninstall gchart and potentially reinstall googlecharts.