LoginSignup
2
4

More than 5 years have passed since last update.

Miniconda 環境構築

Last updated at Posted at 2018-05-27

MinicondaをUbuntu 16.04に導入する
Tipsメモはこちら

環境

Ubuntu 16.04

Minicondaとは?

開発環境の異なる複数プロジェクトを1マシンで回したいとき,環境を簡単に切り替えるためのツール.
また,特定のマシンの環境を他に移行/共有したい時に便利なので,特に並行開発の予定がなくても使用しておくと急な環境移行にも役立つ.

なぜMinicondaか?

別途触ったことがあったため,とりあえずこれを使用した.
Anacondaとの住み分けについては別途調査したい.

インストール

Minicondaの公式ページよりMiniconda*-latest-Linux-**.shを取得
下記コマンドでインストール.

cd [Download Dir]
chmod +x ./Miniconda3-latest-Linux-x86_64.sh
./Miniconda3-latest-Linux-x86_64.sh

Condaの環境作成 + 起動

conda create -n [Env name] python=3.6
source activate [Env name]
2
4
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
2
4