@@ -46,7 +46,7 @@ RUN conda config --add channels conda-forge && \
46
46
47
47
# The anaconda base image includes outdated versions of these packages. Update them to include the latest version.
48
48
RUN pip install seaborn python-dateutil dask && \
49
- pip install pyyaml joblib pytagcloud husl geopy ml_metrics mne pyshp && \
49
+ pip install pyyaml joblib husl geopy ml_metrics mne pyshp && \
50
50
pip install pandas && \
51
51
# Install h2o from source.
52
52
# Use `conda install -c h2oai h2o` once Python 3.7 version is released to conda.
@@ -80,21 +80,12 @@ RUN apt-get install -y libfreetype6-dev && \
80
80
pip install xgboost && \
81
81
# Pinned to match GPU version. Update version together.
82
82
pip install lightgbm==2.3.1 && \
83
- pip install git+git://github.com/Lasagne/Lasagne.git && \
84
83
pip install keras && \
85
84
pip install keras-tuner && \
86
85
pip install flake8 && \
87
- # neon
88
- cd /usr/local/src && \
89
- git clone --depth 1 https://github.com/NervanaSystems/neon.git && \
90
- cd neon && pip install . && \
91
- # nolearn
92
- pip install nolearn && \
93
86
pip install Theano && \
94
- pip install pybrain && \
95
87
pip install python-Levenshtein && \
96
88
pip install hep_ml && \
97
- # chainer
98
89
pip install chainer && \
99
90
# NLTK Project datasets
100
91
mkdir -p /usr/share/nltk_data && \
@@ -135,10 +126,6 @@ RUN pip install scipy && \
135
126
# PUDB, for local debugging convenience
136
127
pip install pudb && \
137
128
pip install imbalanced-learn && \
138
- # Convex Optimization library
139
- # Latest version fails to install, see https://github.com/cvxopt/cvxopt/issues/77
140
- # and https://github.com/cvxopt/cvxopt/issues/80
141
- # pip install cvxopt && \
142
129
# Profiling and other utilities
143
130
pip install line_profiler && \
144
131
pip install orderedmultidict && \
@@ -164,7 +151,6 @@ RUN apt-get install -y libgl1-mesa-glx && \
164
151
/tmp/clean-layer.sh
165
152
166
153
RUN pip install mpld3 && \
167
- pip install mplleaflet && \
168
154
pip install gpxpy && \
169
155
pip install arrow && \
170
156
pip install nilearn && \
@@ -173,7 +159,6 @@ RUN pip install mpld3 && \
173
159
pip install markovify && \
174
160
pip install imgaug && \
175
161
pip install preprocessing && \
176
- pip install Baker && \
177
162
pip install path.py && \
178
163
pip install Geohash && \
179
164
# https://github.com/vinsci/geohash/issues/4
@@ -183,15 +168,13 @@ RUN pip install mpld3 && \
183
168
pip install scikit-optimize && \
184
169
pip install haversine && \
185
170
pip install toolz cytoolz && \
186
- pip install sacred && \
187
171
pip install plotly && \
188
172
pip install hyperopt && \
189
173
pip install fitter && \
190
174
pip install langid && \
191
175
# Delorean. Useful for dealing with datetime
192
176
pip install delorean && \
193
177
pip install trueskill && \
194
- pip install heamy && \
195
178
# Useful data exploration libraries (for missing data and generating reports)
196
179
pip install missingno && \
197
180
pip install pandas-profiling && \
@@ -212,7 +195,6 @@ RUN pip install mpld3 && \
212
195
pip install spectral && \
213
196
pip install descartes && \
214
197
pip install geojson && \
215
- pip install terminalplot && \
216
198
pip install pydicom && \
217
199
pip install wavio && \
218
200
pip install SimpleITK && \
@@ -231,14 +213,11 @@ RUN pip install mpld3 && \
231
213
pip install geoviews && \
232
214
pip install hypertools && \
233
215
pip install py_stringsimjoin && \
234
- pip install nibabel && \
235
216
pip install mlens && \
236
217
pip install scikit-multilearn && \
237
218
pip install cleverhans && \
238
219
pip install leven && \
239
220
pip install catboost && \
240
- # fastFM doesn't support Python 3.7 yet: https://github.com/ibayer/fastFM/issues/151
241
- # pip install fastFM && \
242
221
pip install lightfm && \
243
222
pip install folium && \
244
223
pip install scikit-plot && \
@@ -254,12 +233,12 @@ RUN pip install mpld3 && \
254
233
pip install kaggle && \
255
234
/tmp/clean-layer.sh
256
235
257
- RUN pip install kmeans-smote --no-dependencies && \
236
+ RUN pip install tensorpack && \
258
237
# Add google PAIR-code Facets
259
238
cd /opt/ && git clone https://github.com/PAIR-code/facets && cd facets/ && jupyter nbextension install facets-dist/ --user && \
260
239
export PYTHONPATH=$PYTHONPATH:/opt/facets/facets_overview/python/ && \
261
- pip install tensorpack && \
262
- pip install pycountry && pip install iso3166 && \
240
+ pip install pycountry && \
241
+ pip install iso3166 && \
263
242
pip install pydash && \
264
243
pip install kmodes --no-dependencies && \
265
244
pip install librosa && \
@@ -296,23 +275,18 @@ RUN pip install --upgrade cython && \
296
275
# Pandas data reader
297
276
pip install pandas-datareader && \
298
277
pip install wordsegment && \
299
- pip install pyahocorasick && \
300
278
pip install wordbatch && \
301
279
pip install emoji && \
302
280
# Add Japanese morphological analysis engine
303
281
pip install janome && \
304
282
pip install wfdb && \
305
283
pip install vecstack && \
306
- # Doesn't support Python 3.7 yet. Last release on pypi is from 2017.
307
- # Add back once this PR is released: https://github.com/scikit-learn-contrib/lightning/pull/133
308
- # pip install sklearn-contrib-lightning && \
309
284
# yellowbrick machine learning visualization library
310
285
pip install yellowbrick && \
311
286
pip install mlcrate && \
312
287
/tmp/clean-layer.sh
313
288
314
- RUN pip install bcolz && \
315
- pip install bleach && \
289
+ RUN pip install bleach && \
316
290
pip install certifi && \
317
291
pip install cycler && \
318
292
pip install decorator && \
@@ -398,7 +372,6 @@ RUN pip install flashtext && \
398
372
# b/167220714 unpin once matplotlib >= 3.3 is installed in the base image.
399
373
pip install tensorforce==0.5.5 && \
400
374
pip install pyarabic && \
401
- pip install conx && \
402
375
pip install pandasql && \
403
376
pip install tensorflow_hub && \
404
377
pip install jieba && \
0 commit comments