-
Notifications
You must be signed in to change notification settings - Fork 700
/
Copy pathanaconda-libs.yml
101 lines (79 loc) · 3.23 KB
/
anaconda-libs.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
---
- name: install bokeh
command: /opt/anaconda/bin/conda install bokeh==0.10.0 -y
args:
creates: /opt/anaconda/bin/bokeh-server
- name: install python hdfs access library
command: /opt/anaconda/bin/pip install hdfs
args:
creates: /opt/anaconda/lib/python2.7/site-packages/hdfs/
- name: install spotify luigi
command: /opt/anaconda/bin/pip install luigi
args:
creates: /opt/anaconda/lib/python2.7/site-packages/luigi/
- name: install gensim libraries
command: /opt/anaconda/bin/conda install gensim -y
args:
creates: /opt/anaconda/lib/python2.7/site-packages/gensim
- name: install scrapy
command: /opt/anaconda/bin/conda install scrapy -y
args:
creates: /opt/anaconda/lib/python2.7/site-packages/scrapy
- name: install python scrapyd
command: /opt/anaconda/bin/pip install scrapyd
args:
creates: /opt/anaconda/bin/scrapyd
- name: install python geojson library
command: /opt/anaconda/bin/pip install geojson
args:
creates: /opt/anaconda/lib/python2.7/site-packages/geojson/
- name: install python geocoder library
command: /opt/anaconda/bin/pip install geocoder
args:
creates: /opt/anaconda/lib/python2.7/site-packages/geocoder/
- name: install python geopy library
command: /opt/anaconda/bin/pip install geopy
args:
creates: /opt/anaconda/lib/python2.7/site-packages/geopy/
- name: install python hive access library
command: /opt/anaconda/bin/pip install pyhive
args:
creates: /opt/anaconda/lib/python2.7/site-packages/pyhive/
- name: install ipython parallel
command: /opt/anaconda/bin/conda install ipyparallel -y
args:
creates: /opt/anaconda/lib/python2.7/site-packages/ipyparallel/
- name: install python-nvd3
command: /opt/anaconda/bin/pip install python-nvd3
args:
creates: /opt/anaconda/lib/python2.7/site-packages/nvd3/
- name: install python pygal visualization library
command: /opt/anaconda/bin/pip install pygal
args:
creates: /opt/anaconda/lib/python2.7/site-packages/pygal
- name: install python seaborn visualization library
command: /opt/anaconda/bin/pip install seaborn
args:
creates: /opt/anaconda/lib/python2.7/site-packages/seaborn
- name: install python textblob library
command: /opt/anaconda/bin/pip install textblob
args:
creates: /opt/anaconda/lib/python2.7/site-packages/textblob/
- name: install python vaderSentiment library
command: /opt/anaconda/bin/pip install vaderSentiment
args:
creates: /opt/anaconda/lib/python2.7/site-packages/vaderSentiment/
- name: install python mrjob library
command: /opt/anaconda/bin/pip install mrjob
args:
creates: /opt/anaconda/lib/python2.7/site-packages/mrjob/
- name: download tensorflow whl
get_url: url={{ tensorflow_url }} dest=/root/{{ tensorflow_url | basename }}
when: use_local_files == false
- name: copy tensorflow whl
copy: src=files/{{ tensorflow_url | basename }} dest=/root/{{ tensorflow_url | basename }}
when: use_local_files == true
- name: install Google Tensorflow
command: /opt/anaconda/bin/pip install /root/{{ tensorflow_url | basename }}
args:
creates: /opt/anaconda/lib/python2.7/site-packages/tensorflow