@@ -30,6 +30,7 @@ RUN apt-get update && apt-get -y --no-install-recommends install python3-dev pyt
3030RUN apt-get -y --no-install-recommends install python3-scipy python3-h5py
3131##RUN pip3 install --upgrade pip
3232RUN pip3 install setuptools wheel psutil pipreqs arrow
33+ RUN pip3 install aiohttp asyncio
3334## No module named 'gendoc' -> 22.04 only
3435## RUN pip3 install --upgrade pip
3536## RUN pip3 install gendoc
@@ -38,6 +39,15 @@ RUN pip3 install setuptools wheel psutil pipreqs arrow
3839# plotly==5.9 ??
3940# https://github.com/cgoldberg/xvfbwrapper
4041RUN pip3 install seaborn plotly kaleido xvfbwrapper
42+
43+ # https://shapely.readthedocs.io/en/2.1.1/manual.html
44+ # https://cartopy.readthedocs.io/stable/
45+ RUN pip3 install shapely cartopy --no-binary shapely --no-binary cartopy
46+
47+ # PIL: https://pypi.org/project/pillow/
48+ # folium: https://python-visualization.github.io/folium/latest/
49+ RUN pip3 install pillow folium
50+
4151# rtree==0.9.4 & geopandas==0.6 & xlrd==1.2 & openpyxl==3.0 ??
4252RUN pip3 install scipy rtree geopandas fiona patsy statsmodels xlrd openpyxl geocoder
4353# beautifulsoup4==4.9 ??
@@ -57,6 +67,8 @@ RUN pip3 install opencv-python==4.5.5.64
5767#FastAPI: https://fastapi.tiangolo.com
5868RUN pip3 install "fastapi[standard]"
5969
70+ #deep-translator: https://pypi.org/project/deep-translator/
71+ RUN pip3 install deep-translator
6072
6173# Freeze python requirements here:
6274RUN mkdir -p /cre && \
0 commit comments