python error: ImportError: cannot import name '×××' solution

When executing python code, something like

ImportError: cannot import name'Visdom'  error may be due to the following reasons:

1. An error occurs when importing the package, try to uninstall the package first, and then re-import.

#Uninstall package

pip uninstall ×[]

#Installation package

pip install ×××

2. File order of imported files. Try to import sequentially from the outermost folder

3. Check whether the file name you named is the same as the imported library file name.

 

 

Guess you like

Origin blog.csdn.net/sinat_39307513/article/details/85996442