我正在使用以下脚本在静音模式下在计算机上安装(重新安装)最新的anaconda。它已经很好地工作了很长时间,成功安装了anaconda。然而,它最近破了,现在不是安装所有的anaconda软件包,而是最终安装“anaconda:custom-py36hbbc8b67_0”。脚本在下面,其输出在
之后$(function(){
var includes = $('[data-include]');
jQuery.each(includes, function(){
var JS = $(this).data('include') + '.js';
var file = $(this).data('include') + '.html';
$(this).load(file);
$.ajax({
url: JS,
dataType: "script",
success: function() {
alert(file + " loaded");
}
});
});
});
输出“conda install anaconda -y”:
cd ~
rm -r ~/miniconda3 ~/miniconda ~/anaconda ~/anaconda3
set -e
wget http://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O ~/miniconda.sh
bash ~/miniconda.sh -b -f
echo 'PATH=~/miniconda3/bin:$PATH' >> ~/.bashrc
export PATH=~/miniconda3/bin:$PATH
conda install anaconda -y
答案 0 :(得分:0)
执行命令
conda update anaconda
获得一个版本化的Anaconda。
有关详细信息,请参阅conda packages with version name of 'custom'。