/.rvm/rubies/ruby-1.9.3-p286/lib/ruby/site_ruby/1.9.1/rubygems/custom_require.rb:36:in
`require': cannot load such file -- sdl (LoadError)
i've already made:
$ sudo apt-get install libsdl1.2-dev (libsdl1.2-dev is already the
newest version.)
and
$ sudo gem install -r rubysdl and
and
$sudo apt-get install libsdl-ruby (libsdl-ruby is already the newest
version.)
and even: $ rvm remove 1.9.3 and $ rvm install 1.9.3
But always this "cannot load such file"!!! Whyyy ? What else does it
want ?
On Tue, Mar 19, 2013 at 1:05 PM, Deniz Po <lists@ruby-forum.com> wrote:
Why i have always:
/.rvm/rubies/ruby-1.9.3-p286/lib/ruby/site_ruby/1.9.1/rubygems/custom_require.rb:36:in
`require': cannot load such file -- sdl (LoadError)
i've already made:
$ sudo apt-get install libsdl1.2-dev (libsdl1.2-dev is already the
newest version.)
and
$ sudo gem install -r rubysdl and
and
$sudo apt-get install libsdl-ruby (libsdl-ruby is already the newest
version.)
and even: $ rvm remove 1.9.3 and $ rvm install 1.9.3
But always this "cannot load such file"!!! Whyyy ? What else does it
want ?
/.rvm/rubies/ruby-1.9.3-p286/lib/ruby/site_ruby/1.9.1/rubygems/custom_require.rb:36:in
`require': cannot load such file -- sdl (LoadError)
I do not use rvm, and I try to stay as clear as possible from
gems. Your problem is probably related to one of these two
technologies, so I really can't give you a solution. But if you are
using Linux, I can suggest a way to shed some light.
Say your script is called script.rb Run it like this:
strace -eopen ruby script.rb 2>/tmp/output
This command dumps a line in /tmp/output for each file that is opened,
or fails to be opened.
Your error message indicates that you cannot find file sdl.rb. Thus,
do:
grep sdl.rb /tmp/output
you will see where the Ruby interpreter looks for your file. The
places will not include the directory where the file included in the
gem has been installed.
From then on, it really depends on what you find out. It may be that
you were running another instance of the ruby interpreter when you
loaded the gem, for example.
You need to research a bit more, it seems.
Carlo
···
Subject: library sdl (cannot load such file)
Date: mer 20 mar 13 03:05:59 +0900
--
* Se la Strada e la sua Virtu' non fossero state messe da parte,
* K * Carlo E. Prelz - fluido@fluido.as che bisogno ci sarebbe
* di parlare tanto di amore e di rettitudine? (Chuang-Tzu)
Hey, can you post more information? Do you have any file that is requiring
sdl?
Also, you should update your Ruby to 1.9.3-p392.
···
-----
Carlos Agarie
Skype: carlos.agarie
Control engineering
Polytechnic School, University of São Paulo, Brazil
Computer engineering
Embry-Riddle Aeronautical University, USA
2013/3/19 Carlo E. Prelz <fluido@fluido.as>
Subject: library sdl (cannot load such file)
Date: mer 20 mar 13 03:05:59 +0900
Quoting Deniz Po (lists@ruby-forum.com):
> Why i have always:
>
>
/.rvm/rubies/ruby-1.9.3-p286/lib/ruby/site_ruby/1.9.1/rubygems/custom_require.rb:36:in
> `require': cannot load such file -- sdl (LoadError)
I do not use rvm, and I try to stay as clear as possible from
gems. Your problem is probably related to one of these two
technologies, so I really can't give you a solution. But if you are
using Linux, I can suggest a way to shed some light.
Say your script is called script.rb Run it like this:
strace -eopen ruby script.rb 2>/tmp/output
This command dumps a line in /tmp/output for each file that is opened,
or fails to be opened.
Your error message indicates that you cannot find file sdl.rb. Thus,
do:
grep sdl.rb /tmp/output
you will see where the Ruby interpreter looks for your file. The
places will not include the directory where the file included in the
gem has been installed.
From then on, it really depends on what you find out. It may be that
you were running another instance of the ruby interpreter when you
loaded the gem, for example.
You need to research a bit more, it seems.
Carlo
--
* Se la Strada e la sua Virtu' non fossero state messe da parte,
* K * Carlo E. Prelz - fluido@fluido.as che bisogno ci sarebbe
* di parlare tanto di amore e di rettitudine? (Chuang-Tzu)
Subject: Re: library sdl (cannot load such file)
Date: mer 20 mar 13 03:40:01 +0900
--
* Se la Strada e la sua Virtu' non fossero state messe da parte,
* K * Carlo E. Prelz - fluido@fluido.as che bisogno ci sarebbe
* di parlare tanto di amore e di rettitudine? (Chuang-Tzu)
Well now search for where your sdl.rb was actually installed:
sudo find / -name sdl.rb
(might take a bit of time)
Carlo
···
Subject: Re: library sdl (cannot load such file)
Date: mer 20 mar 13 04:29:07 +0900
--
* Se la Strada e la sua Virtu' non fossero state messe da parte,
* K * Carlo E. Prelz - fluido@fluido.as che bisogno ci sarebbe
* di parlare tanto di amore e di rettitudine? (Chuang-Tzu)