Today we will cover a snippet on how to install Redis on Mac OSX (version 10.9 currently).
To install Redis, enter the following commands.
1 2 3 4 5 6 |
curl -O http://download.redis.io/redis-stable.tar.gz tar -xvzf redis-stable.tar.gz rm redis-stable.tar.gz cd redis-stable make sudo make install |
Then to start Redis, you can enter this command.
1 |
redis-server |
Congrats! Now you have Redis up and running on your Mac.