web-dev-qa-db-ja.com

コマンドラインからUbuntu(またはLinux)にAnacondaをインストールする

リモートサーバーに Anaconda をインストールしたいと思います。

サーバーはUbuntu 12.04を実行しています。

SSH経由でのみこのサーバーにアクセスできます。

コマンドラインからAnacondaをインストールするにはどうすればよいですか?

20
JNevens

以下に沿ったもの:

wget http://09c8d0b2229f813c1b93-c95ac804525aac4b6dba79b00b39d1d3.r79.cf1.rackcdn.com/Anaconda-2.1.0-Linux-x86_64.sh

64ビットLinuxのインストーラーを取得するには、次のようにします。

bash Anaconda-2.x.x-Linux-x86[_64].sh
16
Greg Lever

Anaconda repoアーカイブページ を確認し、インストールする適切なバージョンを選択します。

その後、次のようにします。

 # replace this `Anaconda3-version.num-Linux-x86_64.sh` with your choice
~$ wget -c https://repo.continuum.io/archive/Anaconda3-vers.num-Linux-x86_64.sh
~$ bash Anaconda3-version.num-Linux-x86_64.sh

具体的な例:

これを書いている時点では、Anaconda3-5.0.1が最新バージョンです。そう、

$ wget -c https://repo.continuum.io/archive/Anaconda3-5.0.1-Linux-x86_64.sh
$ bash Anaconda3-5.0.1-Linux-x86_64.sh
16
kmario23

Prashantが言ったように、またはbashスクリプトを使用してインストールを自動化できます。必要なPythonのバージョンに応じて、単にコピーして貼り付けます

コマンドラインで完全に実行しようとしている場合は、bashスクリプトを使用します python 2 anaconda install bashスクリプト

# Go to home directory
cd ~

# You can change what anaconda version you want at 
# https://repo.continuum.io/archive/
wget https://repo.continuum.io/archive/Anaconda2-4.2.0-Linux-x86_64.sh
bash Anaconda2-4.2.0-Linux-x86_64.sh -b -p ~/anaconda
rm Anaconda2-4.2.0-Linux-x86_64.sh
echo 'export PATH="~/anaconda/bin:$PATH"' >> ~/.bashrc 

# Refresh basically
source .bashrc

conda update conda

python 3 anacondaインストールbashスクリプト

# Go to home directory
cd ~

# You can change what anaconda version you want at 
# https://repo.continuum.io/archive/
wget https://repo.continuum.io/archive/Anaconda3-4.2.0-Linux-x86_64.sh
bash Anaconda3-4.2.0-Linux-x86_64.sh -b -p ~/anaconda
rm Anaconda3-4.2.0-Linux-x86_64.sh
echo 'export PATH="~/anaconda/bin:$PATH"' >> ~/.bashrc 

# Refresh basically
source .bashrc

conda update conda

ソース: https://medium.com/@GalarnykMichael/install-python-on-ubuntu-anaconda-65623042cb5a

1- Anacondaリポジトリ に移動し、OSのインストールを見つけてアドレスをコピーします

2-wget {paste}。例: https://repo.continuum.io/archive/Anaconda3-5.2.0-Linux-x86_64.sh

3-bashで実行します。例:bash Anaconda3-5.2.0-Linux-x86_64.sh

走れ!

1
Pablo Ruiz Ruiz

アナコンダインストーラーをダウンロードして、シェルスクリプトなので、実行してください。手順に従ってください :

  1. ターミナルで「wget https://repo.continuum.io/archive/Anaconda-2.3.0-Linux-x86_64.sh "と入力します

  2. ファイルは現在のディレクトリにダウンロードされます。ダウンロードしたファイルを「bash ./Anaconda-2.3.0-Linux-x86_64.sh」で実行します

  3. 端末を再起動します。これは、anacondaが提供するバージョンpython versionをそのユーザーのデフォルトに設定するために非常に重要です。

注-Pythonの異なるバージョンを使用するための環境を使用してみてください。ルートのデフォルトのpythonバージョンを変更すると、yumなどの一部の機能が機能しなくなる可能性があります。

0
Prashant Kumar
$ Sudo bash Anaconda2-4.3.0-Linux-x86_64.sh

ビデオチュートリアル:: https://youtu.be/JP60kTsVJ8E

0
rjrajsaha