Answers:
有关更多详细信息,请参见Anaconda Hompepage!
安装说明[Linux安装]
这些说明说明了如何在Linux系统上安装Anaconda。
后下载的Anaconda安装,运行从终端下面的命令:
$ bash Anaconda-2.x.x-Linux-x86[_64].sh
接受许可条款后,将要求您指定安装位置(默认为~/anaconda
)。
注意:如果选择用户可写的安装位置,则不需要root特权来安装Anaconda,例如,~/anaconda.*
自提取完成后,应将anaconda二进制目录添加到PATH环境变量中。
由于所有Anaconda都包含在一个目录中,因此卸载Anaconda很容易(您只需删除整个安装位置目录)。
如果遇到任何问题,请尝试禁用防病毒软件。Linux / OS X卸载
由于所有Anaconda都包含在一个目录中,因此卸载Anaconda很简单(您只需删除整个安装位置目录):
$ rm -rf ~/anaconda
moc
(用于构建Qt应用程序),如果/home/USER/anaconda3/bin
在路径中进行编译,则可能与系统库冲突。
您可以使用wget
从命令行下载:
对于Python3:
32位版本:
wget https://repo.anaconda.com/archive/Anaconda3-5.3.1-Linux-x86.sh
64位版本
wget https://repo.anaconda.com/archive/Anaconda3-5.3.1-Linux-x86_64.sh
下载完成后,请执行以下操作:
32位:
bash Anaconda-5.3.1-Linux-x86.sh
64位:
bash Anaconda3-5.3.1-Linux-x86_64.sh
对于使用Python2的用户,Anaconda之后的“ 3”应更改为2。
如果您尝试在命令行中完全使用它,请使用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
# Reload default profile
source ~/.bashrc
conda update conda
# 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
# Reload default profile
source ~/.bashrc
conda update conda
资料来源:https : //medium.com/@GalarnykMichael/install-python-on-ubuntu-anaconda-65623042cb5a
除了@Vivek的答案之外,要获取最新的python3 64位Linux版本:
CONTREPO=https://repo.continuum.io/archive/
# Stepwise filtering of the html at $CONTREPO
# Get the topmost line that matches our requirements, extract the file name.
ANACONDAURL=$(wget -q -O - $CONTREPO index.html | grep "Anaconda3-" | grep "Linux" | grep "86_64" | head -n 1 | cut -d \" -f 2)
wget -O ~/Downloads/anaconda.sh $CONTREPO$ANACONDAURL
bash ~/Downloads/anaconda.sh
grep
当然,可以更改第3行中的过滤器以符合您的要求。
问:这是怎么回事?
wget -q -O - URL
悄悄地(-q
)在以下位置获取html URL
(在本例中为https://repo.continuum.io/archive/,以进行访问$CONTREPO
),并将其发送到标准输出(-O -
)。grep "text"
从输入中返回包含的行text
。因此,首先,我们选择所有包含“ Anaconda3”的行,然后选择所有包含“ Linux”的行,然后选择所有包含“ 86_64”的行(对于64位版本)。head -n 1
返回输入的第一行。我依靠网站维护顺序,以便将最新版本放在首位。cut -d \" -f 2
在双引号(-d \"
)上分割输入,双引号将HTML的href中的文件名括起来,并返回第二个字段(-f 2
),作为href的目标。安装Python 3.6版本
sudo bash Anaconda3-4.3.0-Linux-x86_64.sh
对于Python 2.7版本
sudo bash Anaconda2-4.3.0-Linux-x86_64.sh
运行导航器
anaconda-navigator
运行Spyder IDE
spyder
运行Jupyter Notebook
jupyter-notebook
跟着这些步骤:
export PATH="~/anaconda/bin:$PATH"
然后,您可以使用以下命令更新它们:
conda update conda
conda update anaconda
我已经在ubuntu教程上安装了anaconda,并将其安装在我的系统上。您可以运行以下命令。
conda update conda
conda update anaconda
查看Anaconda存储库存档页面,然后选择要安装的适当版本。
之后,只需执行以下操作:
# 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-2019.03。所以,
$ wget -c https://repo.continuum.io/archive/Anaconda3-5.0.1-Linux-x86_64.sh
$ bash Anaconda3-5.0.1-Linux-x86_64.sh
安装完成后,您还可以选择通过以下方式删除安装脚本:
$ rm -rf Anaconda3-5.0.1-Linux-x86_64.sh
buns
安装软件包?我听说Anaconda
只适用于已安装的产品。