I followed
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 ?
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 rubygemsfrom a terminal. Then you should be able to install rawr withsudo gem install rawr.The
rawr installcommand 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 | moreor justsudo apt-cache search rawr | moreif you don’t want to filter for the word “ruby” in package names.