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

前端 未结 2 2168
星月不相逢
星月不相逢 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 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

提交回复
热议问题