jupyter/scipy/cpu/Dockerfile
2024-06-28 15:32:11 +08:00

13 lines
372 B
Docker

FROM docker.io/ben0i0d/jupyter:py-c
# Install Python 3 packages
RUN pip install \
# Data analysis and visualization
'pandas' 'matplotlib' \
# Machine learning and data mining
'scikit-learn' \
# Scientific calculations and statistical analysis
'scipy' 'numpy' &&\
pip cache purge && \
MPLBACKEND=Agg python -c "import matplotlib.pyplot"