リモートサーバーに Anaconda をインストールしたいと思います。
サーバーはUbuntu 12.04を実行しています。
SSH経由でのみこのサーバーにアクセスできます。
コマンドラインからAnacondaをインストールするにはどうすればよいですか?
以下に沿ったもの:
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
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
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
走れ!
アナコンダインストーラーをダウンロードして、シェルスクリプトなので、実行してください。手順に従ってください :
ターミナルで「wget https://repo.continuum.io/archive/Anaconda-2.3.0-Linux-x86_64.sh "と入力します
ファイルは現在のディレクトリにダウンロードされます。ダウンロードしたファイルを「bash ./Anaconda-2.3.0-Linux-x86_64.sh」で実行します
端末を再起動します。これは、anacondaが提供するバージョンpython versionをそのユーザーのデフォルトに設定するために非常に重要です。
注-Pythonの異なるバージョンを使用するための環境を使用してみてください。ルートのデフォルトのpythonバージョンを変更すると、yumなどの一部の機能が機能しなくなる可能性があります。
$ Sudo bash Anaconda2-4.3.0-Linux-x86_64.sh
ビデオチュートリアル:: https://youtu.be/JP60kTsVJ8E