如何解决 irb 中的加载错误问题?

发布于 2024-12-06 18:35:23 字数 369 浏览 0 评论 0原文

我不明白为什么会出现这个错误。我有一个名为 hello.rb 的文件,它位于 "C/Ruby192/bin/hello.rb" 中。

irb(main):005:0>load("hello.rb")  
Load Error: no such file to load -- hello.rb  
    from(irb):5:in`load'  
    from(irb):5  
    from C:/Ruby192/bin/irb:12:in`<main>'

如果您能解决这个问题,我将非常感激。

I can't understand why this error occurs. I have a file named hello.rb, it is in "C/Ruby192/bin/hello.rb".

irb(main):005:0>load("hello.rb")  
Load Error: no such file to load -- hello.rb  
    from(irb):5:in`load'  
    from(irb):5  
    from C:/Ruby192/bin/irb:12:in`<main>'

I would be very appreciative if you could solve this problem.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

你的笑 2024-12-13 18:35:23

来自精细手册

加载(文件名,wrap=false)→ true
加载并执行文件 filename 中的 Ruby 程序。如果文件名未解析为绝对路径,则会在$:中列出的库目录中搜索该文件。

您的 "hello.rb" 不是绝对路径,因此 load 会通过 $: 在库目录中查找它。据推测,'C/Ruby192/bin' 不在 $: 中(或者 '.' 不在 $: 中)(如果您已经在 C/Ruby192/bin/ 中)。尝试指定完整路径:

> load('C/Ruby192/bin/hello.rb')
> load('./hello.rb') # If you're in C/Ruby192/bin/ already

From the fine manual:

load(filename, wrap=false) → true
Loads and executes the Ruby program in the file filename. If the filename does not resolve to an absolute path, the file is searched for in the library directories listed in $:.

Your "hello.rb" is not an absolute path so load looks through $: to find it in the library directories. Presumably, 'C/Ruby192/bin' isn't in $: (or '.' isn't in $: if you're in C/Ruby192/bin/ already). Try specifying the full path:

> load('C/Ruby192/bin/hello.rb')
> load('./hello.rb') # If you're in C/Ruby192/bin/ already
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文