LoginSignup
1
0

More than 5 years have passed since last update.

minicondaによるpython開発環境をubuntuで速攻立ち上げする

Posted at

しょっちゅうやってるのでメモ代わりにまとめます

インストール&ダウンロード

Dockerコンテナとかあまり余分なものは入ってない環境の場合以下のものが入ってないことがあるので全部インストール

sudo apt install bzip2
sudo apt install wget
sudo apt install git

以下でダウンロード&インストール
.bashrcに環境変数を書き込むのでsourc .bashrcをsource必要があります

wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh
bash ./Miniconda3-latest-Linux-x86_64.sh 
source ~/.bashrc

root権限なしでもインストールできるのが嬉しいところですね

$ conda -V
conda 4.5.12

こんな感じで出てくればOKです

1
0
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
0