@@ -52,7 +52,7 @@ RUN conda config --add channels conda-forge && \
52
52
53
53
# The anaconda base image includes outdated versions of these packages. Update them to include the latest version.
54
54
RUN pip install seaborn python-dateutil dask && \
55
- pip install pyyaml joblib pytagcloud husl geopy ml_metrics mne pyshp && \
55
+ pip install pyyaml joblib husl geopy ml_metrics mne pyshp && \
56
56
pip install pandas && \
57
57
# Install h2o from source.
58
58
# Use `conda install -c h2oai h2o` once Python 3.7 version is released to conda.
@@ -86,21 +86,12 @@ RUN apt-get install -y libfreetype6-dev && \
86
86
pip install xgboost && \
87
87
# Pinned to match GPU version. Update version together.
88
88
pip install lightgbm==2.3.1 && \
89
- pip install git+git://github.com/Lasagne/Lasagne.git && \
90
89
pip install keras && \
91
90
pip install keras-tuner && \
92
91
pip install flake8 && \
93
- # neon
94
- cd /usr/local/src && \
95
- git clone --depth 1 https://github.com/NervanaSystems/neon.git && \
96
- cd neon && pip install . && \
97
- # nolearn
98
- pip install nolearn && \
99
92
pip install Theano && \
100
- pip install pybrain && \
101
93
pip install python-Levenshtein && \
102
94
pip install hep_ml && \
103
- # chainer
104
95
pip install chainer && \
105
96
# NLTK Project datasets
106
97
mkdir -p /usr/share/nltk_data && \
@@ -141,10 +132,6 @@ RUN pip install scipy && \
141
132
# PUDB, for local debugging convenience
142
133
pip install pudb && \
143
134
pip install imbalanced-learn && \
144
- # Convex Optimization library
145
- # Latest version fails to install, see https://github.com/cvxopt/cvxopt/issues/77
146
- # and https://github.com/cvxopt/cvxopt/issues/80
147
- # pip install cvxopt && \
148
135
# Profiling and other utilities
149
136
pip install line_profiler && \
150
137
pip install orderedmultidict && \
@@ -170,7 +157,6 @@ RUN apt-get install -y libgl1-mesa-glx && \
170
157
/tmp/clean-layer.sh
171
158
172
159
RUN pip install mpld3 && \
173
- pip install mplleaflet && \
174
160
pip install gpxpy && \
175
161
pip install arrow && \
176
162
pip install nilearn && \
@@ -179,7 +165,6 @@ RUN pip install mpld3 && \
179
165
pip install markovify && \
180
166
pip install imgaug && \
181
167
pip install preprocessing && \
182
- pip install Baker && \
183
168
pip install path.py && \
184
169
pip install Geohash && \
185
170
# https://github.com/vinsci/geohash/issues/4
@@ -189,15 +174,13 @@ RUN pip install mpld3 && \
189
174
pip install scikit-optimize && \
190
175
pip install haversine && \
191
176
pip install toolz cytoolz && \
192
- pip install sacred && \
193
177
pip install plotly && \
194
178
pip install hyperopt && \
195
179
pip install fitter && \
196
180
pip install langid && \
197
181
# Delorean. Useful for dealing with datetime
198
182
pip install delorean && \
199
183
pip install trueskill && \
200
- pip install heamy && \
201
184
# Useful data exploration libraries (for missing data and generating reports)
202
185
pip install missingno && \
203
186
pip install pandas-profiling && \
@@ -218,7 +201,6 @@ RUN pip install mpld3 && \
218
201
pip install spectral && \
219
202
pip install descartes && \
220
203
pip install geojson && \
221
- pip install terminalplot && \
222
204
pip install pydicom && \
223
205
pip install wavio && \
224
206
pip install SimpleITK && \
@@ -237,14 +219,11 @@ RUN pip install mpld3 && \
237
219
pip install geoviews && \
238
220
pip install hypertools && \
239
221
pip install py_stringsimjoin && \
240
- pip install nibabel && \
241
222
pip install mlens && \
242
223
pip install scikit-multilearn && \
243
224
pip install cleverhans && \
244
225
pip install leven && \
245
226
pip install catboost && \
246
- # fastFM doesn't support Python 3.7 yet: https://github.com/ibayer/fastFM/issues/151
247
- # pip install fastFM && \
248
227
pip install lightfm && \
249
228
pip install folium && \
250
229
pip install scikit-plot && \
@@ -260,12 +239,12 @@ RUN pip install mpld3 && \
260
239
pip install kaggle && \
261
240
/tmp/clean-layer.sh
262
241
263
- RUN pip install kmeans-smote --no-dependencies && \
242
+ RUN pip install tensorpack && \
264
243
# Add google PAIR-code Facets
265
244
cd /opt/ && git clone https://github.com/PAIR-code/facets && cd facets/ && jupyter nbextension install facets-dist/ --user && \
266
245
export PYTHONPATH=$PYTHONPATH:/opt/facets/facets_overview/python/ && \
267
- pip install tensorpack && \
268
- pip install pycountry && pip install iso3166 && \
246
+ pip install pycountry && \
247
+ pip install iso3166 && \
269
248
pip install pydash && \
270
249
pip install kmodes --no-dependencies && \
271
250
pip install librosa && \
@@ -303,23 +282,18 @@ RUN pip install --upgrade cython && \
303
282
# Pandas data reader
304
283
pip install pandas-datareader && \
305
284
pip install wordsegment && \
306
- pip install pyahocorasick && \
307
285
pip install wordbatch && \
308
286
pip install emoji && \
309
287
# Add Japanese morphological analysis engine
310
288
pip install janome && \
311
289
pip install wfdb && \
312
290
pip install vecstack && \
313
- # Doesn't support Python 3.7 yet. Last release on pypi is from 2017.
314
- # Add back once this PR is released: https://github.com/scikit-learn-contrib/lightning/pull/133
315
- # pip install sklearn-contrib-lightning && \
316
291
# yellowbrick machine learning visualization library
317
292
pip install yellowbrick && \
318
293
pip install mlcrate && \
319
294
/tmp/clean-layer.sh
320
295
321
- RUN pip install bcolz && \
322
- pip install bleach && \
296
+ RUN pip install bleach && \
323
297
pip install certifi && \
324
298
pip install cycler && \
325
299
pip install decorator && \
@@ -409,7 +383,6 @@ RUN pip install flashtext && \
409
383
# b/167220714 unpin once matplotlib >= 3.3 is installed in the base image.
410
384
pip install tensorforce==0.5.5 && \
411
385
pip install pyarabic && \
412
- pip install conx && \
413
386
pip install pandasql && \
414
387
pip install tensorflow_hub && \
415
388
pip install jieba && \
0 commit comments