2

Ubuntu 10.04. I have installed Ruby 1.9.2 through rvm and want to serve rails applications with Passenger. However, if I sudo apt-get install libapache2-mod-passenger, it's telling me that ruby, ruby1.8, rubygems, rubygems1.8, irb1.8, rdoc1.8 is about to be installed as well as some other packages. Is there any safe way to avoid installing those, since I already have ruby and rubygems installed and don't need anything for ruby 1.8?

Artem Pakk
  • 147
  • 7

1 Answers1

3

Since you're mixing a ruby installation not coming from apt-get with a package of apt-get, issues will show, like you report.

You can avoid that by installing Passenger gem gem install passenger and proceeding to install the apache module following Passenger instructions:

http://www.modrails.com/install.html

Luis Lavena
  • 146
  • 2
  • Are there any downsides of installing ruby with apt-get besides that I won't be able to switch ruby versions like with rvm? – Artem Pakk Jul 16 '11 at 00:11
  • apt ruby is 1.8, user wants 1.9.2, which is already installed. That is one downside. Usage of RVM doesn't matter, Passenger does not support multiple versions of Ruby at the same time running on the same Apache installation. – Luis Lavena Jul 16 '11 at 20:37