AttributeError: type object 'Callable' has no attribute '_abc_registry'

前端 未结 2 2153
星月不相逢
星月不相逢 2020-11-30 07:15

When I open my jupyter notebook I get errors.

I use google for help, but I can\'t find an answer.

I\'m on macOS mojave and using python 3.7.2.I reinstalled

相关标签:
2条回答
  • 2020-11-30 07:49

    I recommend using python 3.6/3.5. This as many other packages are not well optimized for higher updates of python, just yet.

    0 讨论(0)
  • 2020-11-30 08:05

    Try uninstalling typing:

    pip uninstall typing
    

    or downgrading python to 3.6. There seems to be a problem with typing in 3.7

    If after that you get:

    AttributeError: module 'typing' has no attribute '_ClassVar'

    try pip uninstall dataclasses.

    For more info refer to: https://github.com/RTIInternational/gobbli/issues/10

    0 讨论(0)
提交回复
热议问题