Zulip » History » Version 1
Joseph Foley, 2015-09-05 02:48
| 1 | 1 | Joseph Foley | h1. Zulip |
|---|---|---|---|
| 2 | |||
| 3 | h2. Setting up a twitter search bot for zulip streams |
||
| 4 | |||
| 5 | Warning, the REST api 1.0 is no longer supported, so these instructions may not work. |
||
| 6 | |||
| 7 | * Become root |
||
| 8 | <pre> ksu </pre> |
||
| 9 | * Setup a linux box with a zulip user |
||
| 10 | <pre>adduser zulip |
||
| 11 | aptitude -y install git mercurial |
||
| 12 | </pre> |
||
| 13 | * Get the zulip git repo |
||
| 14 | <pre>git clone https://github.com/zulip/python-zulip.git</pre> |
||
| 15 | * Install the prerequisites |
||
| 16 | <pre> aptitude -y install python-simplejson python-json python-requests python-oauth2 |
||
| 17 | hg clone http://python-twitter.googlecode.com/hg/ python-twitter |
||
| 18 | cd python-twitter |
||
| 19 | mv README README.md # error in the installer |
||
| 20 | python setup.py build |
||
| 21 | python setup.py install |
||
| 22 | </pre> |