I don''t have root access Is there any idea to install ruby on rails in home folder(/home/username/) only ? -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
Bob Showalter
2007-Nov-14 20:41 UTC
Re: how to install rails in home folder(/home/username) ?
On Nov 14, 2007 12:56 PM, Pokkai Dokkai <rails-mailing-list-ARtvInVfO7ksV2N9l4h3zg@public.gmane.org> wrote:> > I don''t have root access > Is there any idea to install ruby on rails in home > folder(/home/username/) only ?Yes, you do it pretty much like you do with other packages: pass a --prefix to configure: ./configure --prefix=/home/username Then when you install rubygems and rails, everything will be placed under that location (in lib, bin, and so forth). --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
Pokkai Dokkai
2007-Nov-15 05:06 UTC
Re: how to install rails in home folder(/home/username) ?
Bob Showalter wrote:> Then when you install rubygems and rails, everything will be placed > under that location (in lib, bin, and so forth).thank you for reply.. i did it as you told, but console is not starting . how to solve this ? in terminal username@server:~/Desktop/project$ ruby script/console Loading development environment. /home/username/Desktop/ruby/lib/ruby/1.8/irb/completion.rb:10:in `require'': no such file to load -- readline (LoadError) from /home/username/Desktop/ruby/lib/ruby/1.8/irb/completion.rb:10 from /home/username/Desktop/ruby/lib/ruby/1.8/irb/init.rb:252:in `require'' from /home/username/Desktop/ruby/lib/ruby/1.8/irb/init.rb:252:in `load_modules'' from /home/username/Desktop/ruby/lib/ruby/1.8/irb/init.rb:250:in `each'' from /home/username/Desktop/ruby/lib/ruby/1.8/irb/init.rb:250:in `load_modules'' from /home/username/Desktop/ruby/lib/ruby/1.8/irb/init.rb:21:in `setup'' from /home/username/Desktop/ruby/lib/ruby/1.8/irb.rb:54:in `start'' from /home/username/Desktop/ruby/bin/irb:13 username@server:~/Desktop/project$ -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
Bob Showalter
2007-Nov-15 15:08 UTC
Re: how to install rails in home folder(/home/username) ?
On Nov 15, 2007 12:06 AM, Pokkai Dokkai <rails-mailing-list-ARtvInVfO7ksV2N9l4h3zg@public.gmane.org> wrote:> > Bob Showalter wrote: > > > Then when you install rubygems and rails, everything will be placed > > under that location (in lib, bin, and so forth). > > thank you for reply.. > i did it as you told, > > but console is not starting . > how to solve this ? > > in terminal > > username@server:~/Desktop/project$ ruby script/console > Loading development environment. > /home/username/Desktop/ruby/lib/ruby/1.8/irb/completion.rb:10:in > `require'': no such file to load -- readline (LoadError) > from > /home/username/Desktop/ruby/lib/ruby/1.8/irb/completion.rb:10 > from /home/username/Desktop/ruby/lib/ruby/1.8/irb/init.rb:252:in > `require'' > from /home/username/Desktop/ruby/lib/ruby/1.8/irb/init.rb:252:in > `load_modules'' > from /home/username/Desktop/ruby/lib/ruby/1.8/irb/init.rb:250:in > `each'' > from /home/username/Desktop/ruby/lib/ruby/1.8/irb/init.rb:250:in > `load_modules'' > from /home/username/Desktop/ruby/lib/ruby/1.8/irb/init.rb:21:in > `setup'' > from /home/username/Desktop/ruby/lib/ruby/1.8/irb.rb:54:in > `start'' > from /home/username/Desktop/ruby/bin/irb:13 > username@server:~/Desktop/project$Not sure why readline didn''t get installed. Anyway, ask on the Ruby list; it''s a Ruby installation issue, not a Rails issue. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---