1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

minicondaのDockerイメージをインストールする(for Mac)

Posted at

minicondaとは?

Anacondaを最小パッケージ構成に限定したディストリビューション。

Anacondaとは?

データ分析、グラフ描画、画像処理の際によく利用するライブラリが含まれているPythonのディストリビューション。

Dockerイメージのインストール

$ docker pull continuumio/miniconda3
Using default tag: latest
latest: Pulling from continuumio/miniconda3
(〜中略〜)
Status: Downloaded newer image for continuumio/miniconda3:latest

Dockerイメージ起動

$ docker run -i -t continuumio/miniconda3 /bin/bash

# Dockerコンテナ
$ docker commit <コンテナID> miniconda3:init
$ docker run -i -t miniconda3:init /bin/bash

# Macのホームディレクトリをマウントして起動.
$ docker run -i -t -v $HOME:$HOME miniconda3:init /bin/bash


参考

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?