from pygraph.classes.digraph import digraph
C:\Users\Administrator\PycharmProjects\untitled1\venv\Scripts\python.exe C:/Users/Administrator/PycharmProjects/untitled1/a.pyTraceback (most recent call last):
File "C:/Users/Administrator/PycharmProjects/untitled1/a.py", line 1, in <module>
from pygraph.classes.digraph import digraph
File "C:\Users\Administrator\PycharmProjects\untitled1\venv\lib\site-packages\pygraph\__init__.py", line 5, in <module>
from .functions import (a_star_search,
File "C:\Users\Administrator\PycharmProjects\untitled1\venv\lib\site-packages\pygraph\functions\__init__.py", line 13, in <module>
from .planarity import is_planar
File "C:\Users\Administrator\PycharmProjects\untitled1\venv\lib\site-packages\pygraph\functions\planarity\__init__.py", line 1, in <module>
from .functions import is_planar
File "C:\Users\Administrator\PycharmProjects\untitled1\venv\lib\site-packages\pygraph\functions\planarity\functions.py", line 6, in <module>
from .kocay_algorithm import kocay_planarity_test
File "C:\Users\Administrator\PycharmProjects\untitled1\venv\lib\site-packages\pygraph\functions\planarity\kocay_algorithm.py", line 1061
except Exception, e:
^
SyntaxError: invalid syntax
进程已结束,退出代码 1
该怎么解决这个报错 帮顶 因为模块的2.x版本的,你的python是3.x版本的,不兼容,试试吧出错的模块
except Exception, e:
改成
except Exception as e: 冬雪雪冬 发表于 2019-12-12 17:29
因为模块的2.x版本的,你的python是3.x版本的,不兼容,试试吧出错的模块
except Exception, e:
改成
我改过 但是改了过后他就说找不到这个模块了 Spirit_zoro 发表于 2019-12-12 19:16
我改过 但是改了过后他就说找不到这个模块了
重新下载看看有没有适用于python3.x版的。 冬雪雪冬 发表于 2019-12-12 19:49
重新下载看看有没有适用于python3.x版的。
我同学3.66的版本就可以运行 我3.7的就是不行安装卸载了很多次不同的版本的这个模块了都不行 你最后下载的哪个版本的pygraph,你做图割做出来没,做出来加个微信,有偿
页:
[1]