“ERROR:root:code for hash md5 was not found” when using any hg mercurial commands

前端 未结 11 1827
臣服心动
臣服心动 2020-12-02 04:05

When trying to use any hg Mercurial commands on the console, I keep getting this error. I installed Python using Homebrew and I am running Mac OS Catalina v. 1

11条回答
  •  有刺的猬
    2020-12-02 04:53

    After installing openssl I got the same problem. This answer didn't help me, but after manual linking of libcrypto.1.1.dylib and libssl.1.1.dylib everything start working. In my case it was:

    ln -s /usr/local/opt/openssl/lib/libcrypto.1.1.dylib /usr/local/lib
    ln -s /usr/local/opt/openssl/lib/libssl.1.1.dylib /usr/local/lib
    

提交回复
热议问题