通过命令行在 Ubuntu(或 Linux)上安装 Anaconda
Install Anaconda on Ubuntu (or Linux) via command line
我想在远程服务器上安装 Anaconda。
服务器是运行Ubuntu12.04.
我只能通过 SSH 访问此服务器。
如何通过命令行安装 Anaconda?
大致如下:
wget https://repo.anaconda.com/archive/Anaconda3-2020.07-Linux-x86_64.sh
获取 64 位安装程序 linux,然后:
bash Anaconda3-2020.07-Linux-x86_64.sh
请查看 Anaconda repo archive page 和 select 您想要安装的合适版本。
之后,只需执行:
# 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-2020.07 是最新版本。所以,
~$ wget -c https://repo.anaconda.com/archive/Anaconda3-2020.07-Linux-x86_64.sh
~$ bash Anaconda3-2020.07-Linux-x86_64.sh
P.S. 根据评论,这应该也适用于 CentOS 系统。
$ sudo bash Anaconda2-4.3.0-Linux-x86_64.sh
视频教程::
https://youtu.be/JP60kTsVJ8E
只需下载 anaconda 安装程序并执行它,因为它是一个 shell 脚本。按照以下步骤:
在终端输入"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 版本设置为该用户的默认版本非常重要。
注意 - 尝试使用环境来使用不同版本的 python。更改 root 的默认 python 版本可能会导致某些功能(如 yum)无法运行。
您可以按照 Prashant 所说的进行操作,也可以使用 bash 脚本来自动安装。只需根据您想要的 Python
版本简单地复制和粘贴
如果您完全在命令行中尝试,请使用 bash 脚本
python 2 anaconda install bash script:
# 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 install bash script
# 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 Repository,为您的 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
运行!
下载 linux 的 Anaconda,通过 WinScp 放置在你的 ubuntu 系统中,然后
$ sudo bash Anaconda2-4.3.0-Linux-x86_64.sh
注销您的 ssh 会话然后登录后,您将获得基础环境。
我想在远程服务器上安装 Anaconda。
服务器是运行Ubuntu12.04.
我只能通过 SSH 访问此服务器。
如何通过命令行安装 Anaconda?
大致如下:
wget https://repo.anaconda.com/archive/Anaconda3-2020.07-Linux-x86_64.sh
获取 64 位安装程序 linux,然后:
bash Anaconda3-2020.07-Linux-x86_64.sh
请查看 Anaconda repo archive page 和 select 您想要安装的合适版本。
之后,只需执行:
# 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-2020.07 是最新版本。所以,
~$ wget -c https://repo.anaconda.com/archive/Anaconda3-2020.07-Linux-x86_64.sh
~$ bash Anaconda3-2020.07-Linux-x86_64.sh
P.S. 根据评论,这应该也适用于 CentOS 系统。
$ sudo bash Anaconda2-4.3.0-Linux-x86_64.sh
视频教程:: https://youtu.be/JP60kTsVJ8E
只需下载 anaconda 安装程序并执行它,因为它是一个 shell 脚本。按照以下步骤:
在终端输入"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 版本设置为该用户的默认版本非常重要。
注意 - 尝试使用环境来使用不同版本的 python。更改 root 的默认 python 版本可能会导致某些功能(如 yum)无法运行。
您可以按照 Prashant 所说的进行操作,也可以使用 bash 脚本来自动安装。只需根据您想要的 Python
版本简单地复制和粘贴如果您完全在命令行中尝试,请使用 bash 脚本 python 2 anaconda install bash script:
# 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 install bash script
# 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 Repository,为您的 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
运行!
下载 linux 的 Anaconda,通过 WinScp 放置在你的 ubuntu 系统中,然后
$ sudo bash Anaconda2-4.3.0-Linux-x86_64.sh
注销您的 ssh 会话然后登录后,您将获得基础环境。