Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>Below I try to resume my rails installation. It should work well.</p> <p><strong>1) Download Xcode from Apple Application Store :</strong></p> <p>use this link : <a href="http://itunes.apple.com/fr/app/xcode/id448457090?mt=12" rel="noreferrer">xcode</a></p> <p><strong>2) Install xcode :</strong></p> <p>Use finder=>applications to locate "Xcode installation icon and double-click on it to begin the installation</p> <p>**2b.) For xcode 4.3. After installing xcode, launch it, navigate to Xcode->Preferences, Downloads tab. Install Command Line Tools. This will download and install C, compiler, loader and other command line utilities needed to compile &amp; build the Ruby packages. </p> <p><strong>3) use a terminal to install git:</strong></p> <pre><code>gem install git </code></pre> <p>and put this line in your .bash_profile (create one if none exists) :</p> <pre><code>export PATH=$PATH:/usr/local/git/bin/ </code></pre> <p><strong>4) use a terminal to install rvm:</strong></p> <pre><code>bash &lt; &lt;(curl -s https://raw.github.com/wayneeseguin/rvm/master/binscripts/rvm-installer ) </code></pre> <p>and run this command to update your .bash_profile :</p> <pre><code>echo '[[ -s "$HOME/.rvm/scripts/rvm" ]] &amp;&amp; . "$HOME/.rvm/scripts/rvm" # Load RVM function' &gt;&gt; ~/.bash_profile </code></pre> <p><strong>5) use a terminal to install ruby 1.9.2 and rails:</strong> </p> <pre><code>rvm autolibs enable rvm install 1.9.2 rvm --default 1.9.2 gem update gem install rails </code></pre>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload