我想在Ubuntu22.04上安装anaconda,按照以下说明:https://linuxhint.com/install-anaconda-ubuntu-22-04/
在步骤3中,我使用了以下代码:
$ curl --output anaconda.sh https://repo.anaconda.com/archive/Anaconda3-2022.05-Linux-x86_64.sh
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 658M 100 658M 0 0 1260k 0 0:08:55 0:08:55 --:--:-- 1097k
在步骤3的末尾,应该检查sha256校验和,并将其与在线寄存器进行比较。在我的例子中,这些代码不同:
$ sha256sum anaconda.sh
a7c0afe862f6ea19a596801fc138bde0463abcbce1b753e8d5c474b506a2db2d anaconda.sh
同时在线(https://repo.anaconda.com/archive/)用于同一版本:
Anaconda3-2022.05-Linux-x86_64.sh 658.8M 2022-05-10 13:22:00 a01150aff48fcb6fcd6472381652de04
有没有人知道为什么会这样,如果这是个问题?
发布于 2022-08-26 10:16:21
我刚刚发现,在两个不同的地方,anaconda发布它们的校验和,它们在这个安装文件的校验和中存在差异:
https://docs.anaconda.com/anaconda/install/hashes/all/
Anaconda3-2022.05-Linux-x86_64.sh | 658.8 MiB | 2022-05-10 14:22:00 | a7c0afe862f6ea19a596801fc138bde0463abcbce1b753e8d5c474b506a2db2d
-- | -- | -- | --
https://repo.anaconda.com/archive/
Anaconda3-2022.05-Linux-x86_64.sh | 658.8M | 2022-05-10 13:22:00 | a01150aff48fcb6fcd6472381652de04
-- | -- | -- | --
所以,这似乎是他们的一个问题,我会联系他们。
https://askubuntu.com/questions/1425789
复制相似问题