4
2

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 3 years have passed since last update.

wgetコマンドでminicondaインストール

Last updated at Posted at 2020-03-17

環境
miniconda
linux
OS: ubuntu
ダウンロード日:2020/3/16

#minicondaインストール時
ターミナルのコマンドラインからサーバにインストールしたかった。
(初心者のため、公式minicondaからダウンロードしてくるときにラップトップのデスクトップにしか落としてこれなかった。wgetのコマンドを知らなかったので苦戦しました。)
-インストール
wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh
-実行
bash Miniconda3-latest-Linux-x86_64.sh
-確認
conda info -e

表示されるエラー
conda: command not found

おやおや → 内心(´;ω;`)

#PATHを通してあげてcondaコマンド使えるようにする
現在miniconda3のディレクトリ内
ここで
vi ~/.bashrc
この内容のexport PATH部分を変更する。
export PATH=~/miniconda3/bin:$PATH
export PATHの記述がない場合はaliasの記述の下に追加する
保存して、ターミナルで下記コマンドでシステムに設定反映
source ~/.bashrc

再度、
conda info -e
を実行すると環境情報が出てきます。

助けになった参考URL
anaconda3.6 PATHを通す。condaコマンドが使えない場合。

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?