Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add note about missing tools to setup #34

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 2 additions & 0 deletions _posts/2012-04-18-install.markdown
Expand Up @@ -22,6 +22,8 @@ Follow the instructions for your operating system. If you hit into any problems,

Download [RailsInstaller](https://github.com/downloads/railsinstaller/railsinstaller-nix/RailsInstaller-1.0.3-osx-10.7.app.tgz). Double click the downloaded file and it will unpack it into the current directory. Double click the the newly unpacked 'RailsInstaller-1.0.3-osx-10.7.app' and follow the instructions. It will open a README file with 'Rails Installer OS X' at the top. Please ignore the instructions in this file.

**Note!** After installing, when you try to create your first Rails application, you may get an error message about missing MAKE tool. In this case you should install [Xcode](https://developer.apple.com/xcode/) or the command-line developer tools for it. This may require registering as a developer, which is free and instantaneous. If after this detour, you still get an error about missing GCC, then you should link the */usr/bin/gcc command* to an alias */usr/bin/gcc-4.2* or whichever version it complains about not finding. To do this use e.g. *Terminal.app* and *ln -s /usr/bin/gcc /usr/bin/gcc-4.2* command.

You also need a text editor to edit code files. For the workshop we recommend the free code editor Komodo Edit.

* [Download the Komodo Edit and install it.](http://www.activestate.com/komodo-edit/downloads)
Expand Down