-
Notifications
You must be signed in to change notification settings - Fork 2
/
INSTALL.txt
48 lines (27 loc) · 947 Bytes
/
INSTALL.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
How to setup / run
This project is currently setup around building within a Python 3 Virtualenv.
Instructions are currently unix-style command-line based (bash).
1. Install Python 3.7
https://wiki.python.org/moin/BeginnersGuide/Download
2. Install Virtualenv
https://virtualenv.pypa.io/en/latest/installation/
3. Clone Tacos-And-Transit Source code
TODO
4. Create a virtualenv
> cd /path/to/cloned/repo
> virtualenv .
5. Activate virtualenv and install requirements
> source bin/activate
> pip install -r requirements
6. Run scripts
# create a directory for the data to end up in
> mkdir data
# then you can run a script
> python scripts/overpass_turbo_taco_stands.py
Note: The yelp script requires yelp keys:
https://www.yelp.com/developers/documentation/v3/get_started
https://www.yelp.com/developers/documentation/v3/authentication
7. Run UI
(with the virtualenv active)
> python -m http.serve
> open http://localhost:8000