LoginSignup
1
0

More than 5 years have passed since last update.

Web3.pyでエラー: ModuleNotFoundError: No module named 'eth_utils.toolz'

Last updated at Posted at 2018-09-07

現象

Web3.pyで何ぞするときに標題のようなエラーが発生することがあります。

ModuleNotFoundError: No module named 'eth_utils.toolz'

ライブラリが不足しているのかと思いpip install -r requirements.txt を叩いてもすでに入っている旨のログが出力されるだけ。

対応

そんな時は、基本ですが入っているeth系のライブラリをすべて削除して再度入れ直してみましょう。

rm -fr /Users/xxxx/.pyenv/versions/3.6.1/lib/python3.6/site-packages/eth_*
pip install -r requirements.txt
1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0