GNU/Linux >> Linux の 問題 >  >> Linux

wgetで最新のAnacondaをインストールするにはどうすればよいですか

次の 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 でソフトウェアをダウンロード
  • 実行権を割り当てる
  • 実行し、指示に従う
  • .bashrc をロードして PATH 環境変数を更新
  • コンダを更新
  • pip をインストール
  • 環境を作る
  • ...

    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
    

    Linux
    1. Ubuntuに最新バージョンのHandbrakeをインストールする方法

    2. CentOS7に最新のLinuxカーネルをインストールする方法

    3. Wget で HTTP PUT を実行するにはどうすればよいですか?

    1. Ubuntu20.04LTSに最新のZoomをインストールする方法

    2. Debian10に最新のMySQLをインストールする方法

    3. CentOS8に最新のLibreOfficeバージョンをインストールする方法

    1. Ubuntuに最新のMySQL8をインストールする方法

    2. LinuxにAnacondaをインストールする方法

    3. Ubuntuに最新バージョンのEclipseをインストールする方法