Importgraph lab hello world错误

时间:2016-02-25 16:15:03

标签: python graphlab

在运行Ubuntu 14.04的PC上安装GraphLab之后,我在第一个hello world程序中遇到了以下错误:

import graphlab 

错误:

 ---------------------------------------------------------------------------
 ImportError                               Traceback (most recent call last)
 <ipython-input-5-784beace7f26> in <module>()
  ----> 1 import graphlab

  ImportError: No module named graphlab

这是什么原因以及如何解决错误?

2 个答案:

答案 0 :(得分:1)

此类错误的常见原因是您的软件包安装在Python正在搜索的默认路径之外的某个位置。检查

print sys.path

查看graphlab模块的位置是否存在。我猜测它不是,在这种情况下你需要追加它:

sys.path.append('path/to/graphlab')

如果可行,您可以将该位置添加到PYTHONPATH以供将来使用。

答案 1 :(得分:0)

您是否在计算机上安装了graphlab或安装了graphlab python模块?如果您只在计算机上安装了graphlab模块,则可能需要安装它。

看起来this link here包含使用graphlab安装pip所需的信息。