ruby 安装 yob pdf 阅读器
我正在尝试安装 yob pdf 阅读器: https://github.com/yob/pdf- reader#readme
我正在按照那里的指示进行操作:
gem install pdf-reader
并且报告成功。
我将一个 pdf 文件放入我的目录中,将其命名为 1.pdf
。
然后我创建一个包含以下代码的脚本:
reader = PDF::Reader.new("1.pdf")
当我运行该脚本时,出现以下错误:
uninitialized constant PDF (NameError)
到目前为止,谷歌搜索还不是很成功。
我该如何解决这个问题?
I'm trying to install the yob pdf reader: https://github.com/yob/pdf-reader#readme
I'm following the directions there and do:
gem install pdf-reader
and that reports success.
I place a pdf in my directory, name it 1.pdf
.
Then I create a script that has the following code:
reader = PDF::Reader.new("1.pdf")
when I run that script I get the following error:
uninitialized constant PDF (NameError)
Googling it hasn't been very successful so far.
How do I solve this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果它是纯 ruby 脚本,则一开始您可能会缺少以下内容:
您还可以指定所需的 gem 版本,以防您安装了多个版本:
If it's a pure ruby script, you may be missing the following at the beginning:
You can also specify the version of the gem that you want to require, in case you have multiple versions installed: