Skip to content
This repository has been archived by the owner on Mar 25, 2019. It is now read-only.

Commit

Permalink
moved installation instructions to troubleshooting
Browse files Browse the repository at this point in the history
  • Loading branch information
willettk committed Aug 11, 2015
1 parent 0d79f5c commit 1cc7f7e
Showing 1 changed file with 11 additions and 6 deletions.
17 changes: 11 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,6 @@

### Getting Started

Installation notes:

* The Ruby builds require node v0.10.xx, since the path.existsSync function was removed in 0.12. You can use ```nvm``` to switch the version if necessary.
* Ensure that you are running the ```hem``` command from the local path (```./node_modules/.bin/hem```), rather than any global version.

```bash
git clone https://github.com/zooniverse/Galaxy-Zoo.git
cd Galaxy-Zoo
Expand Down Expand Up @@ -59,4 +54,14 @@ Zooniverse Galaxy Zoo translations not contained within this repo are also licen

### Troubleshooting

If you encounter issues, ensure that you are using node version no later than 0.11.14. The [n](https://www.npmjs.com/package/n) package can help with this. Also ensure that you have [SSH access for github](https://help.github.com/articles/generating-ssh-keys/) set up.
* If you encounter issues with the Ruby builds, ensure that you are using node version no later than 0.11.14. The [n](https://www.npmjs.com/package/n) package can help with this. This is because the path.existsSync function was removed in 0.12. Example:
```bash
npm install nvm
. ~/nvm/nvm.sh

nvm install v0.10
nvm use v0.10
```
* Also ensure that you have [SSH access for github](https://help.github.com/articles/generating-ssh-keys/) set up.
* Ensure that you are running the ```hem``` command from the local path (```./node_modules/.bin/hem```), rather than any global version when starting ```hem server```.

0 comments on commit 1cc7f7e

Please sign in to comment.