-
Notifications
You must be signed in to change notification settings - Fork 1
/
environment.yml
46 lines (37 loc) · 1.25 KB
/
environment.yml
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
name: template-env
channels:
- udst # for orca and pandana
- conda-forge # for choicemodels, statsmodels, and many dependencies
- timothyb0912 # for pylogit
dependencies:
- python=3.6
- geopandas=0.3
- jupyter=1.0
- line_profiler=2.1
- matplotlib=2.2
- memory_profiler=0.54
- numpy=1.15
- orca=1.5
- pandana=0.4
- pandas=0.23
- pylogit=0.2
- pytest=3.8
- scipy=1.1
- statsmodels=0.9
# This Conda environment includes the direct dependencies for template-based UrbanSim
# models, plus a variety of other packages that are useful for validation and testing.
# One-time setup (several minutes):
# `conda env create -f environment.yml`
# Activate the environment:
# `source activate template-env`
# Install development versions of ChoiceModels and UrbanSim Templates
# (only needs to be done once, but run git-pull from these directories
# periodically to update the codebases)
# Navigate to directory where choicemodels folder should go:
# `git clone https://github.com/udst/choicemodels.git`
# `cd choicemodels`
# `python setup.py develop`
# Navigate to directory where urbansim_templates folder should go:
# `git clone https://github.com/udst/urbansim_templates.git`
# `cd urbansim_templates`
# `python setup.py develop`