1

我在 OSX 10.7 上为 python 2.6 安装了 igraph,但我无法导入 igraph 库。

它显示导入错误:没有模块名称 igraph。

我不知道。请帮帮我。

谢谢。

4

1 回答 1

1

但是,我无法使用 python 运行代码。我编写了一个代码,并尝试运行,例如'python ex.py'

好吧,即使你没有回答我的大部分问题,我很确定我能猜到你的问题。您的问题标题是“安装后我无法在 python 2.6 上导入 igraph”,但您不是在尝试在 python 2.6 上导入它,而是在尝试 2.7。

$ python
Python 2.7.2 (default, Jun 20 2012, 16:23:33) 
[GCC 4.2.1 Compatible Apple Clang 4.0 (tags/Apple/clang-418.0.60)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import igraph
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ImportError: No module named igraph
>>>

$ python2.6
Python 2.6.7 (r267:88850, Jun 20 2012, 16:23:38) 
[GCC 4.2.1 Compatible Apple Clang 4.0 (tags/Apple/clang-418.0.60)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import igraph
>>>

看到不同?OS X 10.7(和 10.8)附带三个版本的 Python:2.5、2.6 和 2.7。它们是完全独立的安装,因此当您为 Python 2.6 安装 igraph 时,并没有为您的 2.5 或 2.7 安装安装它。

默认值,即您刚刚运行时获得的版本python,是 2.7。如果您想要特定版本,则必须运行python2.6

因此,您要么需要运行 python2.6,要么需要为 2.7 安装 igraph。

附带说明一下,如果你安装了任何第三方 Python 安装,你会让自己更加困惑,所以请不要这样做(或者卸载,如果你已经有),直到你真正知道你的正在做。

于 2012-10-26T18:05:46.530 回答