How to solve AttributeError when importing igraph?

北城以北 提交于 2019-11-29 05:54:38

Most likely, there is a module io in ~/projectdir or one of the paths the project configures. The gzip module imported by igraph starts with

import io

and expect the built-in io module, not your project's one. Look for an io directory, or io.py or io.pyc. It can also help to scrutinize sys.path for any other directories (maybe outside of ~/projectdir) that might contain modules named io.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!