miniconda3
Powerful and flexible package manager
10M+
The
continuumioimages are deprecated. Updates tocontinuumio/miniconda3will be discontinued after version26.7.x. The latest Docker images for Miniconda are available atanaconda/miniconda.
By using this image, you hereby acknowledge and assent to the legal terms applicable to the Miniconda installer at https://www.anaconda.com/legal
Docker container with a bootstrapped installation of Miniconda (based on Python 3.X) that is ready to use.
Miniconda is installed into the /opt/conda folder and ensures that the default user has the conda command in their path.
Miniconda is a free, miniature installation of Anaconda Distribution that includes only conda, Python, the packages they both depend on, and a small number of Anaconda plugins.
You can download and run this image using the following commands:
docker pull continuumio/miniconda3
docker run -i -t continuumio/miniconda3 /bin/bash
Alternatively, you can start a Jupyter Notebook server and interact with Miniconda via your browser:
docker run -i -t -p 8888:8888 continuumio/miniconda3 /bin/bash -c "\
conda install jupyter -y --quiet && \
mkdir -p /opt/notebooks && \
jupyter notebook \
--notebook-dir=/opt/notebooks --ip='*' --port=8888 \
--no-browser --allow-root"
You can then view the Jupyter Notebook by opening http://localhost:8888 in your browser, or http://<DOCKER-MACHINE-IP>:8888 if you are using a Docker.
Content type
Image
Digest
sha256:1808b31ef…
Size
300.3 MB
Last updated
7 days ago
docker pull continuumio/miniconda3