@@ -402,7 +402,8 @@ RUN pip install bleach && \
402
402
pip install ipykernel && \
403
403
pip install ipython && \
404
404
pip install ipython-genutils && \
405
- pip install ipywidgets && \
405
+ # Fix qgrid by pinning ipywidgets https://github.com/quantopian/qgrid/issues/376
406
+ pip install ipywidgets==7.7.1 && \
406
407
pip install isoweek && \
407
408
pip install jedi && \
408
409
pip install jsonschema && \
@@ -445,7 +446,9 @@ RUN pip install bleach && \
445
446
pip install pyarrow && \
446
447
pip install feather-format && \
447
448
pip install fastai && \
448
- pip install allennlp && \
449
+ # allennlp is in maintenance mode https://github.com/allenai/allennlp
450
+ # It downgrades the Pytorch install to 1.11.
451
+ #pip install allennlp && \
449
452
pip install importlib-metadata && \
450
453
python -m spacy download en_core_web_sm && python -m spacy download en_core_web_lg && \
451
454
apt-get install -y ffmpeg && \
@@ -504,7 +507,10 @@ RUN pip install flashtext && \
504
507
pip install transformers && \
505
508
# b/232247930 >= 2.2.0 requires pyarrow >= 6.0.0 which conflicts with dependencies for rapidsai 0.21.*
506
509
pip install datasets==2.1.0 && \
507
- pip install dlib && \
510
+ # dlib has a libmkl incompatibility:
511
+ # test_dlib_face_detector (test_dlib.TestDLib) ... INTEL MKL ERROR: /opt/conda/bin/../lib/libmkl_avx512.so.2: undefined symbol: mkl_sparse_optimize_bsr_trsm_i8.
512
+ # Intel MKL FATAL ERROR: Cannot load libmkl_avx512.so.2 or libmkl_def.so.2.
513
+ #pip install dlib && \
508
514
pip install kaggle-environments && \
509
515
pip install geopandas && \
510
516
pip install nnabla && \
0 commit comments