tags:

views:

31

answers:

1

I followed

http://rawr.rubyforge.org/

I typed rawr install but it says it couldn't find the package....

No command 'rawr' found, did you mean:
 Command 'raw' from package 'util-linux' (main)
 Command 'rar' from package 'rar' (multiverse)
rawr: command not found

am I supposed to run jruby -S rawr install ?

+1  A: 

It looks like you're probably on Ubuntu, based on the 'multiverse' reference. If you don't already have rubygems, then you should first do sudo apt-get install rubygems from a terminal. Then you should be able to install rawr with sudo gem install rawr.

The rawr install command is not actually for installing rawr itself. It's one of the commands that you can run with rawr to package your source files.

Also, there might be a .deb package for rawr in Ubuntu's repositories. You can check for one with something like sudo apt-cache search rawr | grep ruby | more or just sudo apt-cache search rawr | more if you don't want to filter for the word "ruby" in package names.

eldarerathis
do I need to install it inside Jruby ? jruby -S gem install rawr
Kim Jong Woo
I don't think so, but I'm not really sure on that, to be honest. You can always try it without installing from within JRuby to see if it works, and if it doesn't then you can work from there.
eldarerathis