我尝试安装 Anaconda3-4.1.1-Linux-x86_64.sh,但在终端中保存文件后出现错误,提示权限被拒绝。我该如何解决这个问题?
答案1
下载并安装 Anaconda(Linux)
从以下网址下载 Anacondahttps://www.continuum.io/downloads。
运行安装程序脚本:
$ bash AnacondaX-x.x.x-Linux-x86[_64].sh
接受许可证(enter显示许可证)。阅读后,使用 滚动到末尾space。在需要时输入
yes
和来接受enter。指定安装位置。(默认为
~/anacondaX
,其中 X 是 Python 发行版的主要版本,例如 X=3 表示 Python 3.5)将此位置添加到小路如果您的安装程序要求您这样做。否则,您应该自行将此位置添加到您的 PATH 中
~/.bashrc
:export PATH="/home/$USER/anacondaX/bin:$PATH"
卸载
Anaconda 安装在单个目录中。因此,要卸载它,只需删除整个目录。默认安装位置是~/anacondaX
。删除很容易:
rm -rf ~/anacondaX