web-dev-qa-db-ja.com

wgetで最新のAnacondaをインストールする方法

私は私のサーバーにwgetでanacondaをインストールすることを検討しています。 https://askubuntu.com/questions/505919/installing-anaconda-python-on-ubuntuhttp://ericjonas.com/anaconda.html そしてそれは有望に見えます。これを書いている時点で、現在のバージョン( https://www.continuum.io/downloads#_unix )は4.0です。最新バージョンを入手するにはどうすればよいですか。

16
user61629

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/

25
Bruce Pucci

これにより、64ビットLinux環境向けの最新のminiconda 3が得られます。

  1. wgetでソフトウェアをダウンロードする
  2. 実行権を割り当てる
  3. 実行および指示に従う
  4. .bashrcをロードしてPATH環境変数を更新する
  5. 更新conda
  6. pipをインストールする
  7. 環境を作成する

...

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
3
Sören

これにより、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
2
philipper