Scipy CPU Docker: Data science environment with PyTorch, OpenCV, and Rust support.
1.1K
This Docker image extends the Jupyter SciPy Notebook container, tailored to provide a ready-to-use environment for data science and machine learning tasks. Powered by CPU-based operations, it includes popular Python libraries such as PyTorch, OpenCV, and SimpleITK. Additionally, it incorporates the installation of Rust and the evcxr_jupyter kernel for Rust development directly within the Jupyter Notebook environment.
Moreover, the image encompasses supplementary tools like Plastimatch and DCMTK, enhancing its capabilities for medical image processing and manipulation.
This Docker image serves as a comprehensive solution for developers and data scientists seeking a flexible and powerful environment for their analyses and experiments, featuring support for multiple programming languages and data/image processing tools.
docker-compose up to build and start the container.http://localhost:1515..
├── Dockerfile
├── docker-compose.yml
└── notebook/
├── notebooks/ # Place your Jupyter notebooks here
Run the following command to build and start the container:
docker-compose up -d
Docker compose example: docker-compose.yml
version: '3'
services:
notebook:
build: .
ports:
- '8888:8888'
volumes:
- ./notebook:/home/jovyan/work
- /mnt:/mnt
restart: always
To access the container as the root user and install additional Python libraries, you can use the following command:
docker exec -it -u root container_id bash
Replace container_id with the ID of the running container.
Content type
Image
Digest
sha256:ee1e068d2…
Size
2.9 GB
Last updated
over 2 years ago
docker pull rtmedical/scipy-notebook