LoginSignup
3
2

More than 5 years have passed since last update.

Dockerで Python + Anaconda(miniconda)の環境構築をする コマンドリスト

Posted at

イメージをダウンロード

$ docker pull continumio/miniconda3

コンテナを利用

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

一時停止

ctrl+p
ctrl+q

終了

exit

コンテナ情報表示

$ docker ps -a

コンテナ保存

$ docker commit 0e66d08d0757 mlearn:init

コンテナ再開

3
2
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
3
2