Hwang Hee Jin
Hwang Hee Jin

Reputation: 9

how to install web3 in google colab

!pip install web3

I tried like this but I got this error message.

ERROR: chainer 6.5.0 has requirement typing-extensions<=3.6.6, but you'll have typing-extensions 3.7.4.1 which is incompatible.

What should I do for this problem?

Upvotes: 1

Views: 1182

Answers (1)

Giorgos Myrianthous
Giorgos Myrianthous

Reputation: 39790

You need to downgrade typing-extensions to a version older than 3.6.6:

pip install --force-reinstall typing-extensions<=3.6.6

Upvotes: 1

Related Questions