次の bash スクリプトを記述して、インストール プロセスを自動化できます。
cd ~
wget https://repo.continuum.io/archive/Anaconda3-2020.11-Linux-x86_64.sh
bash Anaconda3-2020.11-Linux-x86_64.sh -b -p ~/anaconda3
rm Anaconda3-2020.11-Linux-x86_64.sh
echo 'export PATH="~/anaconda3/bin:$PATH"' >> ~/.bashrc
# Reload default profile
conda init
source ~/.bashrc
wget はファイルをダウンロードするだけです...
Python 2.7 の場合:
wget https://repo.continuum.io/archive/Anaconda2-2018.12-Linux-x86_64.sh
Python3.X の場合:
wget https://repo.continuum.io/archive/Anaconda3-2018.12-Linux-x86_64.sh
これは、インストールをガイドするシェル スクリプトです。
ダウンロードしたファイルのフォルダー内で次の行を実行して、ガイド付きインストールを開始します...
Python 2.7 の場合:
bash Anaconda2-2018.12-Linux-x86_64.sh
Python 3.X の場合:
bash Anaconda3-2018.12-Linux-x86_64.sh
最新のリポジトリを確認するか、特定のバージョンが必要な場合はこちら:https://repo.continuum.io/archive/
これにより、最新の anaconda バージョンが Web サイトから html をスクレイピングしてダウンロードされます:
wget -O - https://www.anaconda.com/distribution/ 2>/dev/null | sed -ne '[email protected]*\(https:\/\/repo\.anaconda\.com\/archive\/Anaconda3-.*-Linux-x86_64\.sh\)\">64-Bit (x86) Installer.*@\[email protected]' | xargs wget
これにより、64 ビット Linux 環境用の最新の miniconda 3 が得られます:
<オール>...
wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh
chmod +x Miniconda3-latest-Linux-x86_64.sh
./Miniconda3-latest-Linux-x86_64.sh
source ~/.bashrc
# now update conda and install pip
conda update conda
conda install pip
# (optional) create and activate an environment
conda create -n py3 python pandas scikit-learn jupyter
source activate py3