File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -10,13 +10,26 @@ messages using Slack's Web API via python-slackclient.
1010
1111**Set up your Python environment: **
1212
13- See `virtualenv `_ docs for more info.
13+ We're using virtualenv to keep the dependencies and environmental variables specific to this app. See `virtualenv `_ docs for more info.
1414
1515.. _virtualenv : https://virtualenv.pypa.io
1616
17+ This example app works best in Python 2.7. If 2.7 is your default version, create a virtual environment by running:
18+
19+ .. code ::
20+
21+ virtualenv -p /your/path/to/python2 env
22+
23+ Otherwise, if Python 3+ is your default, specify the path to your 2.7 instance:
24+
1725.. code ::
1826
1927 virtualenv -p /your/path/to/python2 env
28+
29+ Then initialize the virtualenv:
30+
31+ .. code ::
32+
2033 source env/bin/activate
2134
2235
You can’t perform that action at this time.
0 commit comments