Skip to content

Commit

Permalink
Update README with requirements.
Browse files Browse the repository at this point in the history
[Fixes asmuth#8]
  • Loading branch information
JDutil committed Feb 8, 2013
1 parent 15ad976 commit 5b97e71
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,28 @@ _Recommendify is a ruby/redis based recommendation engine_ - The recommendation
+ __"Users that viewed this video also viewed..."__ from `user_id--viewed-->video_id` pairs
+ __"Users that like this venue also like..."__ from `user_id--likes-->venue_id` pairs

Requirements
------------

Installing the recommendify gem will fail if your system does not have the hiredis library.

To install on OSX run:

```shell
brew install hiredis
```

To install on Ubuntu:

```shell
apt-get install libhiredis-dev
```

To install on other platforms:

```shell
git clone https://github.com/antirez/hiredis.git && cd hiredis && make && sudo make install && sudo ldconfig
```


synopsis
Expand Down

5 comments on commit 5b97e71

@awaage
Copy link

@awaage awaage commented on 5b97e71 Mar 13, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks! Please accept this!

@Githraine
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I am getting this on a windows platform:
Cloning into 'hiredis'...
remote: Reusing existing pack: 3, done.
remote: Total 3 (delta 0), reused 0 (delta 0)
Unpacking objects: 100% (3/3), done.
Checking connectivity... done.
'make' is not recognized as an internal or external command, operable program or batch file.

What am I missing?

@JDutil
Copy link
Owner Author

@JDutil JDutil commented on 5b97e71 Jun 11, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Don't use windows.

@Githraine
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Funny guy.
Anyone with constructive advice?

@JDutil
Copy link
Owner Author

@JDutil JDutil commented on 5b97e71 Jun 11, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I would suggest asking on the actual project instead of my fork.

"make" the unrecognized command listed at the end is a linux / osx thing though so as I said I recommend you don't use windows as windows doesn't have a "make" command.

Please sign in to comment.