阅读目录
回到顶部
下载安装
下载地址https://www.anaconda.com/download/
旧版本下载https://repo.continuum.io/archive/
比如下载Anaconda3-4.4.0-Linux-x86_64.sh
安装用root用户
bash Anaconda3-4.4.0-Linux-x86_64.sh
安装完后增加环境变量
vim /root/.bashrc # added by Anaconda3 4.4.0 installer export PATH="/root/anaconda3/bin:$PATH" 保存后 source /root/.bashrc
验证安装结果
在终端中输入命令condal list
,如果Anaconda被成功安装,则会显示已经安装的包名和版本号。
在终端中输入python
。这条命令将会启动Python交互界面,如果Anaconda被成功安装并且可以运行,则将会在Python版本号的右边显示“Anaconda custom (64-bit)”。退出Python交互界面则输入exit()
或quit()
即可