Entering edit mode
7.1 years ago
yuabrahamliu
▴
60
Hi all, I have installed the Ubuntu subsystem on Windows 10 (Ubuntu version 16.04). Then, I run the command
curl http://data.biostarhandbook.com/install/aptget.txt | xargs sudo apt-get -y install
(follow the command line on the Biostar Handbook)
on the subsystem to install libraries. All the things are OK. However, when I conduct the following command
bash /mnt/e/program/Miniconda2-latest-Linux-x86_64.sh
to install Miniconda2, although it can be installed successfully, when I use Conda, I got an error:
ERROR:root:code for hash md5 was not found.
Traceback (most recent call last):
File "/usr/local/anaconda2/lib/python2.7/hashlib.py", line 147, in <module>
globals()[__func_name] = __get_hash(__func_name)
File "/usr/local/anaconda2/lib/python2.7/hashlib.py", line 97, in __get_builtin_constructor
raise ValueError('unsupported hash type ' + name)
ValueError: unsupported hash type md5
ERROR:root:code for hash sha1 was not found.
Traceback (most recent call last):
File "/usr/local/anaconda2/lib/python2.7/hashlib.py", line 147, in <module>
globals()[__func_name] = __get_hash(__func_name)
File "/usr/local/anaconda2/lib/python2.7/hashlib.py", line 97, in __get_builtin_constructor
raise ValueError('unsupported hash type ' + name)
ValueError: unsupported hash type sha1
ERROR:root:code for hash sha224 was not found.
......
Besides, if I installed Anacond2, it also had this error, too. I have tried to install the openssl library to solve the problem, as suggested by the internet, but it doesn't work. Can anyone give me some suggestions?