Skip to content

Commit 73d56f7

Browse files
committed
add packages
1 parent feec8b1 commit 73d56f7

File tree

3 files changed

+32
-2
lines changed

3 files changed

+32
-2
lines changed

Dockerfile20

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,15 @@ RUN apt-get -y --no-install-recommends install python3-scipy python3-h5py
3232
RUN pip3 install setuptools wheel psutil pipreqs arrow
3333
# https://github.com/cgoldberg/xvfbwrapper
3434
RUN pip3 install seaborn plotly==5.9 kaleido==0.2.1 xvfbwrapper
35+
36+
# https://shapely.readthedocs.io/en/2.1.1/manual.html
37+
# https://cartopy.readthedocs.io/stable/
38+
RUN pip3 install shapely cartopy --no-binary shapely --no-binary cartopy
39+
40+
# PIL: https://pypi.org/project/pillow/
41+
# folium: https://python-visualization.github.io/folium/latest/
42+
RUN pip3 install pillow folium
43+
3544
RUN pip3 install scipy rtree==0.9.4 geopandas==0.6 fiona patsy statsmodels datatable xlrd==1.2 openpyxl==3.0
3645
RUN pip3 install connexion beautifulsoup4==4.9
3746
#RUN pip3 install pycurl #recommended by jupyterlab

Dockerfile22

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,17 @@ RUN pip3 install setuptools wheel psutil pipreqs arrow
3838
# plotly==5.9 ??
3939
# https://github.com/cgoldberg/xvfbwrapper
4040
RUN pip3 install seaborn plotly kaleido xvfbwrapper
41-
# rtree==0.9.4 & geopandas==0.6 & xlrd==1.2 & openpyxl==3.0 ??
42-
RUN pip3 install scipy rtree geopandas fiona patsy statsmodels xlrd openpyxl geocoder
41+
42+
# https://shapely.readthedocs.io/en/2.1.1/manual.html
43+
# https://cartopy.readthedocs.io/stable/
44+
RUN pip3 install shapely cartopy --no-binary shapely --no-binary cartopy
45+
46+
# PIL: https://pypi.org/project/pillow/
47+
# folium: https://python-visualization.github.io/folium/latest/
48+
RUN pip3 install pillow folium
49+
50+
# rtree==0.9.4 & geopandas==0.9 & xlrd==1.2 & openpyxl==3.0 ??
51+
RUN pip3 install scipy rtree geopandas==0.9 fiona patsy statsmodels xlrd openpyxl geocoder
4352
# beautifulsoup4==4.9 ??
4453
RUN pip3 install connexion beautifulsoup4
4554
#RUN pip3 install pycurl #recommended by jupyterlab

Dockerfile24

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ RUN apt-get update && apt-get -y --no-install-recommends install python3-dev pyt
3030
RUN apt-get -y --no-install-recommends install python3-scipy python3-h5py
3131
##RUN pip3 install --upgrade pip
3232
RUN 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
4041
RUN 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 ??
4252
RUN 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
5868
RUN 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:
6274
RUN mkdir -p /cre && \

0 commit comments

Comments
 (0)