ruby 安装 yob pdf 阅读器

发布于 2024-12-04 11:39:10 字数 503 浏览 0 评论 0原文

我正在尝试安装 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

甜味超标? 2024-12-11 11:39:10

如果它是纯 ruby​​ 脚本,则一开始您可能会缺少以下内容:

require 'rubygems'
require 'pdf-reader'

您还可以指定所需的 gem 版本,以防您安装了多个版本:

require 'rubygems'
gem 'pdf-reader', "~> 0.10.0"
require 'pdf-reader'

If it's a pure ruby script, you may be missing the following at the beginning:

require 'rubygems'
require 'pdf-reader'

You can also specify the version of the gem that you want to require, in case you have multiple versions installed:

require 'rubygems'
gem 'pdf-reader', "~> 0.10.0"
require 'pdf-reader'
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文