Containerized development environment for data science projects on x86 CPU only machines.
1.8K
Lightweight data science environment for intro Python, data visualization, data cleaning, feature engineering, and traditional machine learning. No deep learning frameworks; keeps the image small and fast.
Start the container, then use VS Code's Dev Containers: Attach to Running Container command to connect:
docker run --rm -it \
-v $(pwd):/workspace \
gperdrizet/datascience-cpu:latest \
/bin/bash
Open the Command Palette (Ctrl+Shift+P), run Dev Containers: Attach to Running Container, and select the container.
docker run --rm -it \
-p 8888:8888 \
-v $(pwd):/workspace \
gperdrizet/datascience-cpu:latest \
jupyter lab --ip=0.0.0.0 --no-browser --allow-root
MIT. See docker-images.
Content type
Image
Digest
sha256:f34f9fe0e…
Size
857.9 MB
Last updated
22 days ago
docker pull gperdrizet/datascience-cpu