Google-Sketchup 中的 ruby​​ gem

发布于 2024-10-17 16:19:43 字数 301 浏览 2 评论 0原文

如何在 google-sketchup 中使用 ruby​​ gems?

输入: 时

> require 'rubygems'

每当我尝试在 ruby​​ 控制台中

Error: #<LoadError: (eval):7:in `require': no such file to load -- rubygems>

,我都会收到以下信息: 编辑

我在 OSX 上。

How do I use ruby gems in google-sketchup?

Whenever I try typing:

> require 'rubygems'

into the ruby console, I get the following:

Error: #<LoadError: (eval):7:in `require': no such file to load -- rubygems>

EDIT

I am on OSX.

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

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

发布评论

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

评论(2

若水般的淡然安静女子 2024-10-24 16:19:43

抱歉,这不是答案,我只是想我可以提供更多信息...(我还没有足够的代表点来发表评论)

在 SketchUp Ruby 控制台中输入 RUBY_VERSION 返回 1.8.5?

我的 mac 上有几个 ruby​​ 版本,但肯定不是 1.8.5。

使用sketchup 8.0.4810

sorry this is not an answer, i just thought i could shed some more light... (i dont have enough rep points to comment yet)

typing RUBY_VERSION in the SketchUp Ruby Console returns 1.8.5?

i have several ruby versions on my mac but certainly not 1.8.5.

using sketchup 8.0.4810

祁梦 2024-10-24 16:19:43

需要 ruby​​1.8.6,并在 require ruby​​gems 之前添加一些路径到 $LOAD_PATH:

$LOAD_PATH << "C:/Ruby186/lib/ruby/1.8"
$LOAD_PATH << "C:/Ruby186/lib/ruby/site_ruby/1.8"
$LOAD_PATH << "C:/Ruby186/lib/ruby/1.8/i386-mingw32"

$LOAD_PATH.uniq!

# print LOAD PATHS to console
Sketchup.send_action('showRubyPanel:')
  UI.start_timer(1,false) {
  puts "\nLOAD PATHS:\n"
  $LOAD_PATH.each {|x| puts "#{x}\n"}
  puts "\n\n"
}

require 'rubygems' #=> true

编辑 C:\Ruby186\lib\ruby\site_ruby\1.8\rubygems.rb 删除第 12 行

#require 'thread' # HACK: remove me for 1.5 - this is here just for rails

need ruby1.8.6, and add some paths to $LOAD_PATH before require rubygems:

$LOAD_PATH << "C:/Ruby186/lib/ruby/1.8"
$LOAD_PATH << "C:/Ruby186/lib/ruby/site_ruby/1.8"
$LOAD_PATH << "C:/Ruby186/lib/ruby/1.8/i386-mingw32"

$LOAD_PATH.uniq!

# print LOAD PATHS to console
Sketchup.send_action('showRubyPanel:')
  UI.start_timer(1,false) {
  puts "\nLOAD PATHS:\n"
  $LOAD_PATH.each {|x| puts "#{x}\n"}
  puts "\n\n"
}

require 'rubygems' #=> true

edit C:\Ruby186\lib\ruby\site_ruby\1.8\rubygems.rb remove line 12

#require 'thread' # HACK: remove me for 1.5 - this is here just for rails
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文