diff options
author | Ryan Huber <rhuber@gmail.com> | 2015-05-20 11:54:04 -0700 |
---|---|---|
committer | Ryan Huber <rhuber@gmail.com> | 2015-05-20 11:54:04 -0700 |
commit | cf541b430014e2fb597185c77e5008215f1685eb (patch) | |
tree | fd09d214144fd21e49042e90ae66f51a7f9e3744 | |
parent | a52bfc86bafa2262d76b00d3280ea64912155ed3 (diff) | |
download | wee-slack-cf541b430014e2fb597185c77e5008215f1685eb.tar.gz |
update readme because curl needs to be apt-get'd
-rw-r--r-- | README.md | 12 |
1 files changed, 11 insertions, 1 deletions
@@ -46,6 +46,7 @@ Dependencies ------------ * WeeChat 1.1+ http://weechat.org/ * websocket-client https://pypi.python.org/pypi/websocket-client/ + * curl http://curl.haxx.se/ Setup ------ @@ -63,11 +64,20 @@ wee-slack doesn't use the Slack IRC gateway. If you currently connect via the ga /python reload ``` -####1. Install websocket-client lib +####1. Install dependencies + +##### OSX +``` +pip install websocket-client ``` + +##### Linux (ubuntu) +``` +sudo apt-get install curl pip install websocket-client ``` + ####2. copy wee_slack.py to ~/.weechat/python/autoload ``` wget https://raw.githubusercontent.com/rawdigits/wee-slack/master/wee_slack.py |