症状
ERROR:root:code for hash md5 was not found.
Traceback (most recent call last):
File "/usr/local/Cellar/python/2.7.8_1/Frameworks/Python.framework/Versions/2.7/lib/python2.7/hashlib.py", line 139, in <module>
globals()[__func_name] = __get_hash(__func_name)
File "/usr/local/Cellar/python/2.7.8_1/Frameworks/Python.framework/Versions/2.7/lib/python2.7/hashlib.py", line 91, 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/Cellar/python/2.7.8_1/Frameworks/Python.framework/Versions/2.7/lib/python2.7/hashlib.py", line 139, in <module>
globals()[__func_name] = __get_hash(__func_name)
File "/usr/local/Cellar/python/2.7.8_1/Frameworks/Python.framework/Versions/2.7/lib/python2.7/hashlib.py", line 91, in __get_builtin_constructor
raise ValueError('unsupported hash type ' + name)
ValueError: unsupported hash type sha1
and more
https://cloud.google.com/sdk/install
見てねって言われてたので、見ましたが何も解決しません。
hash typeとか言われているので、opensslかなぁと思って、
brew install openssl
brew link openssl --force
brew uninstall python
brew install python --with-brewed-openssl
はやりましたが、症状が変わりません。
これはPythonの問題かなぁと思って、
brew uninstall python
brew install python
としますが、ダメです。
というかあれ、Python3系じゃん。
とここで気づきます。
2系とパスがbrewの仕様で変わっていそうなので
brew install python@2
$ brew list | grep python
python@2
としますが、なんかだめです。
バージョンの問題かなぁとか思いまして、
$ brew update && brew upgrade
をしたらいい感じにアップデートしてくれます。
これで直りました!!
同じエラーに悩まされた人の役に立てば幸いです。