I'm trying to install anaconda
. I'm following the official instructions but when I get to the second step, I run the following command:
$ sha256sum /path/filename
sha256sum: /path/filename: No such file or directory
I'm trying to install anaconda
. I'm following the official instructions but when I get to the second step, I run the following command:
$ sha256sum /path/filename
sha256sum: /path/filename: No such file or directory
It seems OP didn't adapt the command to his computer.
In the command
sha256sum /path/filename
, there is 3 parts :sha256sum
is the command to show the file hash valuepath
is the path to reach the Anaconda installer, so it's the Download file in the OP casefilename
is the name of the Anaconda installer, the current name isAnaconda3-2019.10-Linux-x86_64.sh
So the command would be :
It would return the hash of the file, which you have to compare on the link where you donwload it; if it's NOT the same, don't use it, it could be a malware or just the file corrupt itself during download.
Hash list of Anaconda installer : https://docs.anaconda.com/anaconda/install/hashes/all/
As you can see in the screenshot below, I use your hash result and find that you download a good installer, not corrupted nor malware :