gpt4 book ai didi

python - 安装 Python igraph 的问题

转载 作者:太空宇宙 更新时间:2023-11-04 10:38:50 24 4
gpt4 key购买 nike

我使用 pip 安装了 igraph python 库

sudo pip install python-igraph

我进入 Python 控制台/终端并导入模块

$ python
Python 2.7.4 (default, Sep 26 2013, 03:20:26)
[GCC 4.7.3] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import igraph

没问题。然后我测试看版本号

>>> print igraph.__version__
0.6

也没有问题。但是当我尝试创建脚本时。

from igraph import *
g = Graph()

并执行

python2.7 script.py

python script.py

我得到的只是

Traceback (most recent call last):
File "script.py", line 1, in <module>
from igraph import *
File ".../script.py", line 2, in <module>
g = Graph()
NameError: name 'Graph' is not defined

最佳答案

我看到两个 python 的 igraph 包。如果你不想使用 here 中的 igraph ,并想要来自 here 的那个;然后转到终端并输入

pip uninstall igraph

然后

pip install python-igraph

完成!

关于python - 安装 Python igraph 的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22025524/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com