jupyter/scipy/gpu/Dockerfile

13 lines
360 B
Docker

FROM ben0i0d/jupyter:py-g
# 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"