私は私のサーバーにwgetでanacondaをインストールすることを検討しています。 https://askubuntu.com/questions/505919/installing-anaconda-python-on-ubuntu と http://ericjonas.com/anaconda.html そしてそれは有望に見えます。これを書いている時点で、現在のバージョン( https://www.continuum.io/downloads#_unix )は4.0です。最新バージョンを入手するにはどうすればよいですか。
wgetはファイルをダウンロードするだけです...
for 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
これは、インストールをガイドするシェルスクリプトです。
ダウンロードしたファイルのフォルダー内で次の行を実行して、ガイド付きインストールを開始します...
for python 2.7:
bash Anaconda2-2018.12-Linux-x86_64.sh
for Python 3.X:
bash Anaconda3-2018.12-Linux-x86_64.sh
最新のリポジトリを確認するか、ここに特定のバージョンが必要な場合は、 https://repo.continuum.io/archive/
これにより、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
これにより、Webサイトからhtmlをスクレイピングして最新のアナコンダバージョンがダウンロードされます。
wget -O - https://www.anaconda.com/distribution/ 2>/dev/null | sed -ne 's@.*\(https:\/\/repo\.anaconda\.com\/archive\/Anaconda3-.*-Linux-x86_64\.sh\)\">64-Bit (x86) Installer.*@\1@p' | xargs wget