Which of these scripts is preferred to install rvm on ubuntu server: curl -#L https://get.rvm.io | bash -s stable --autolibs=4 --ruby curl -L get.rvm.io | bash -s stable --auto -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To unsubscribe from this group and stop receiving emails from it, send an email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit https://groups.google.com/groups/opt_out.
On 5 May 2013 00:30, John Merlino <stoicism1-YDxpq3io04c@public.gmane.org> wrote:> Which of these scripts is preferred to install rvm on ubuntu server: > > curl -#L https://get.rvm.io | bash -s stable --autolibs=4 --rubyI don''t think-#L is a good idea, but I assume that is a typo> > curl -L get.rvm.io | bash -s stable --autoI can''t see the documentation for --auto, have you got a link for it? Colin -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To unsubscribe from this group and stop receiving emails from it, send an email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit https://groups.google.com/groups/opt_out.
https://rvm.io/rvm/install Look at the first line: Install RVM with ruby (# for pretty output): $ \curl -#L https://get.rvm.io | bash -s stable --autolibs=3 --ruby But later on on that page it sasy: 1. Download and run the RVM installation script Installing the stable release version: user$ \curl -L https://get.rvm.io | bash -s stable So I assume that the addition of "--autolibs=3 --ruby" means that it instlals all ruby dependencies for you so you dont have to run: rvm requirements ... # For Ruby / Ruby HEAD (MRI, Rubinius, & REE), install the following: ruby: /usr/bin/apt-get install build-essential openssl libreadline6 libreadline6-dev curl git-core zlib1g zlib1g-dev libssl-dev libyaml-dev libsqlite3-dev sqlite3 libxml2-dev libxslt-dev autoconf libc6-dev ncurses-dev automake libtool bison subversion pkg-config and install those manually. Is that correct? On Sunday, May 5, 2013 10:41:01 AM UTC-4, Colin Law wrote:> > On 5 May 2013 00:30, John Merlino <stoi...-YDxpq3io04c@public.gmane.org <javascript:>> wrote: > > Which of these scripts is preferred to install rvm on ubuntu server: > > > > curl -#L https://get.rvm.io | bash -s stable --autolibs=4 --ruby > > I don''t think-#L is a good idea, but I assume that is a typo > > > > > curl -L get.rvm.io | bash -s stable --auto > > I can''t see the documentation for --auto, have you got a link for it? > > Colin >-- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To unsubscribe from this group and stop receiving emails from it, send an email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To view this discussion on the web visit https://groups.google.com/d/msg/rubyonrails-talk/-/6u649LpHdMgJ. For more options, visit https://groups.google.com/groups/opt_out.
On 5 May 2013 15:51, John Merlino <stoicism1-YDxpq3io04c@public.gmane.org> wrote: Please don''t top post, thanks.> https://rvm.io/rvm/install > > Look at the first line: > > Install RVM with ruby (# for pretty output): > > $ \curl -#L https://get.rvm.io | bash -s stable --autolibs=3 --ruby > > But later on on that page it sasy: > > 1. Download and run the RVM installation script > > Installing the stable release version: > > user$ \curl -L https://get.rvm.io | bash -s stable > > So I assume that the addition of "--autolibs=3 --ruby" > > means that it instlals all ruby dependencies for you so you dont have to > run: > > rvm requirements > ... > # For Ruby / Ruby HEAD (MRI, Rubinius, & REE), install the following: > ruby: /usr/bin/apt-get install build-essential openssl libreadline6 > libreadline6-dev > curl git-core zlib1g zlib1g-dev libssl-dev libyaml-dev libsqlite3-dev > sqlite3 libxml2-dev > libxslt-dev autoconf libc6-dev ncurses-dev automake libtool bison subversion > pkg-config > > and install those manually. > > Is that correct?Apparently so. See https://rvm.io/rvm/autolibs/ Let us know whether it works ok. The above seems to bear little relation to your original question:> Which of these scripts is preferred to install rvm on ubuntu server: > curl -#L https://get.rvm.io | bash -s stable --autolibs=4 --ruby > curl -L get.rvm.io | bash -s stable --autobut never mind. Colin> > > > > > On Sunday, May 5, 2013 10:41:01 AM UTC-4, Colin Law wrote: >> >> On 5 May 2013 00:30, John Merlino <stoi...-YDxpq3io04c@public.gmane.org> wrote: >> > Which of these scripts is preferred to install rvm on ubuntu server: >> > >> > curl -#L https://get.rvm.io | bash -s stable --autolibs=4 --ruby >> >> I don''t think-#L is a good idea, but I assume that is a typo >> >> > >> > curl -L get.rvm.io | bash -s stable --auto >> >> I can''t see the documentation for --auto, have you got a link for it? >> >> Colin-- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To unsubscribe from this group and stop receiving emails from it, send an email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit https://groups.google.com/groups/opt_out.
On Sun, May 5, 2013 at 9:51 AM, John Merlino <stoicism1-YDxpq3io04c@public.gmane.org> wrote:> https://rvm.io/rvm/install > > Look at the first line: > > Install RVM with ruby (# for pretty output): > > $ \curl -#L https://get.rvm.io | bash -s stable --autolibs=3 --ruby > > But later on on that page it sasy: > >The line above is our new recommended behavior and follows the guidelines for autolibs stated here: https://rvm.io/rvm/autolibs/ if there is an inconsistency please file a ticket on https://github.com/rvm/rvm-site/issuesand it will be fixed since inconsistencies are bad (and the RVM team are working to fix that by building a new site that is easier to manage -- but inconsistencies on the current site will be fixed too.) If you are not on a Mac (if you are on Linux) 3 is equal to 4 since RVM does not use anything but the built-in on Linux. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To unsubscribe from this group and stop receiving emails from it, send an email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit https://groups.google.com/groups/opt_out.
extra note for the "-#L" it means: show progress bar + follow links On Sunday, May 5, 2013 10:06:56 PM UTC+2, Jordon Bedwell wrote:> > On Sun, May 5, 2013 at 9:51 AM, John Merlino <stoi...-YDxpq3io04c@public.gmane.org<javascript:> > > wrote: > >> https://rvm.io/rvm/install >> >> Look at the first line: >> >> Install RVM with ruby (# for pretty output): >> >> $ \curl -#L https://get.rvm.io | bash -s stable --autolibs=3 --ruby >> >> But later on on that page it sasy: >> >> > The line above is our new recommended behavior and follows the guidelines > for autolibs stated here: https://rvm.io/rvm/autolibs/ if there is an > inconsistency please file a ticket on > https://github.com/rvm/rvm-site/issues and it will be fixed since > inconsistencies are bad (and the RVM team are working to fix that by > building a new site that is easier to manage -- but inconsistencies on the > current site will be fixed too.) > > If you are not on a Mac (if you are on Linux) 3 is equal to 4 since RVM > does not use anything but the built-in on Linux. >-- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To unsubscribe from this group and stop receiving emails from it, send an email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To view this discussion on the web visit https://groups.google.com/d/msg/rubyonrails-talk/-/f2NFQ89PvasJ. For more options, visit https://groups.google.com/groups/opt_out.