diff options
author | schneems <richard.schneeman@gmail.com> | 2012-10-01 20:33:27 -0400 |
---|---|---|
committer | schneems <richard.schneeman@gmail.com> | 2012-10-02 11:31:23 -0400 |
commit | f8a54e16a99cc8a4af35f5b5f96b2fb3ba6bed1b (patch) | |
tree | 4bfe070a94e426cf9123a84aa183fa13537290da /guides | |
parent | 6b1467b848f25bda808a63d304ae8ea5940cbe0d (diff) | |
download | rails-f8a54e16a99cc8a4af35f5b5f96b2fb3ba6bed1b.tar.gz rails-f8a54e16a99cc8a4af35f5b5f96b2fb3ba6bed1b.tar.bz2 rails-f8a54e16a99cc8a4af35f5b5f96b2fb3ba6bed1b.zip |
Explain that command line commands have $
This was extremely confusing to new programmers, also different operating systems call the command line something different
Diffstat (limited to 'guides')
-rw-r--r-- | guides/source/getting_started.md | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/guides/source/getting_started.md b/guides/source/getting_started.md index 2cce1b9b07..563cee6ad2 100644 --- a/guides/source/getting_started.md +++ b/guides/source/getting_started.md @@ -77,6 +77,13 @@ TIP: The examples below use # and $ to denote superuser and regular user termina ### Installing Rails +Open up a command line prompt. On a mac this is called terminal, on windows it is called command prompt. Any commands prefaced with a dollar sign `$` should be run in the command line. Verify sure you have a current version of Ruby installed: + +```bash +$ ruby -v +ruby 1.9.3p194 +``` + To install Rails, use the `gem install` command provided by RubyGems: ```bash |