Linux系统安装Anaconda

Linux系统安装Anaconda

Python 3.6:bash ~/Downloads/Anaconda3-5.0.1-Linux-x86_64.sh

Python 2.7:bash ~/Downloads/Anaconda2-5.0.1-Linux-x86_64.sh

注意:
首词bash也需要输入,无论是否用的Bash shell。

如果你的下载路径是自定义的,那么把该步骤路径中的~/Downloads替换成你自己的下载路径。

除非被要求使用root权限,否则均选择“Install Anaconda as a user”。

安装过程中,看到提示“In order to continue the installation process, please review the license agreement.”(“请浏览许可证协议以便继续安装。”),点击“Enter”查看“许可证协议”。

在“许可证协议”界面将屏幕滚动至底,输入“yes”表示同意许可证协议内容。然后进行下一步。

安装过程中,提示“Press Enter to accept the default install location, CTRL-C to cancel the installation or specify an alternate installation directory.”(“按回车键确认安装路径,按’CTRL-C’取消安装或者指定安装目录。”)如果接受默认安装路径,则会显示“PREFIX=/home//anaconda<2 or 3>”并且继续安装。安装过程大约需要几分钟的时间。

建议:直接接受默认安装路径。
安装器若提示“Do you wish the installer to prepend the Anaconda<2 or 3> install location to PATH in your /home//.bashrc ?”(“你希望安装器添加Anaconda安装路径在/home//.bashrc文件中吗?”),建议输入“yes”。
注意:
路径/home//.bash_rc中“”即进入到家目录后你的目录名。

如果输入“no”,则需要手动添加路径,否则conda将无法正常运行。

当看到“Thank you for installing Anaconda<2 or 3>!”则说明已经成功完成安装。

关闭终端,然后再打开终端以使安装后的Anaconda启动。或者直接在终端中输入source ~/.bashrc也可完成启动。

验证安装结果。可选用以下任意一种方法:

在终端中输入命令condal list,如果Anaconda被成功安装,则会显示已经安装的包名和版本号。

在终端中输入python。这条命令将会启动Python交互界面,如果Anaconda被成功安装并且可以运行,则将会在Python版本号的右边显示“Anaconda custom (64-bit)”。退出Python交互界面则输入exit()或quit()即可。

在终端中输入anaconda-navigator。如果Anaconda被成功安装,则Anaconda Navigator将会被启动。

你可能感兴趣的:(tensorflow)