ImportError: cannot import name typeDict
时间: 2023-10-28 11:05:03 浏览: 219
导入tensorflow时报错:cannot import name 'abs'的解决
As an AI language model, I don't have the full context of your code, but this error typically occurs when there is a circular import dependency or a missing import statement.
The error message suggests that you are trying to import a module or object named "typeDict" but it cannot be found. Double-check the spelling and capitalization of the import statement, and make sure that the module or object you are trying to import is in the correct location and can be accessed by the file where the import statement is located.
If this does not solve the problem, it may be helpful to include more information about your code and the specific import statement that is causing the error.
阅读全文