0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Mac Apple M3 miniconda3 install

Posted at

最近MacBookを買いかけたので備忘用

環境

・MacBook Air M3

公式ドキュメントを参考にする。

今回はインストールコマンドでささっとインストールする。

まずは、インストールするフォルダを任意の場所に作成する。

command
mkdir -p ~/miniconda3

インストールのファイルをダウンロードする。
オプション "-o" でデータをファイルとして保存している。

command
curl https://repo.anaconda.com/miniconda/Miniconda3-latest-MacOSX-arm64.sh -o ~/miniconda3/miniconda.sh

ダウンロードしたShellファイルを実行する。
オプションはそれぞれ以下のようだ。

オプション 概要
-b バッチモードのインストール。オプションがあってもデフォルトになる。
-u 既存でインストールされている場合でも上書きされる。
-p インストール先のprefixを指定する。
command
bash ~/miniconda3/miniconda.sh -b -u -p ~/miniconda3

最後にゴミ掃除。インストールに使ったShellファイルを削除する。

command
rm ~/miniconda3/miniconda.sh

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?