问题标签 [graphlab]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
python - Graphlab 创建 SArray 应用 AttributeError:“模块”对象没有属性“连接”
我在将函数应用于 Graphlab Create (python) 中的 SArray 对象中的值时遇到问题。文档中给出的示例甚至对我来说都失败了。
返回以下内容:
python - Unicode ImportError 使用带有 Enthought iPython 的 graphlab
我正在尝试将 GraphLab Create 与 Enthought Canopy iPython 一起使用,但我得到了一个似乎与 unicode 相关的 ImportError。该行是:
ImportError: /home/aaron/Enthought/Canopy_64bit/User/lib/python2.7/site-packages/graphlab/cython/cy_ipc.so: undefined symbol: PyUnicodeUCS4_DecodeUTF8
这之前是:
GraphLab 论坛http://forum.graphlab.com/discussion/84/importerror-undefined-symbol-pyunicodeucs4-decodeutf8表明这是由于 Enthought Python 是使用 2 字节宽的 unicode 字符编译的。由于我无法重新编译,有没有办法让 Enthought 使用 4 字节字符?
csv - 如何将pagerank的结果作为csv文件导出到GraphLab Create中的磁盘?
您好,我正在阅读 Shawn 撰写的关于 GraphLab Create 入门的教程,就在这里
http://graphlab.com/learn/notebooks/getting_started_with_graphlab_create.html#
这真的很有帮助。
我有一个问题,如何将 pagerank 的结果作为 csv 文件导出到磁盘?
提前谢谢!
graphlab - 如何在 GraphLab Create 中将 2 种或多种顶点添加到 SGraph 中?
我在 ubuntu 中使用 graphlab 创建。我尝试使用以下命令从 2 个 csv 文件中添加 2 种顶点:
但我发现它不起作用。在我运行最后一个命令后尝试添加第二种顶点,我第一次添加的顶点被覆盖了!我怎样才能正确地做到这一点?我怎样才能正确地添加两种边缘?
提前谢谢!
python-2.7 - GraphLab 创建“ImportError:没有名为 graphlab 的模块”
我按照这些说明在我的 Ubuntu 机器上设置了 GraphLab。最后,我打开了 Python 2.7.6 并运行了第一行测试import graphlab as gl
。这给了我
我该如何开始诊断?
细节:
我python -V
从一个终端运行,它返回了我Python 2.7.6
。
在/usr/bin
我找到以下pyth*
条目......我想知道某处是否指向错误的版本:
python - 如何将 VirtualEnv 库与系统范围的库一起使用?
听起来可能很愚蠢,但我很难理解如何使用 VirtualEnv。我的用例如下:1.我的EC2是python 2.6.9,我需要使用graphlab create,它使用> 2.7 2.我安装了一个virtualenv并使用python 2.7.5安装了graphlab 3.现在我想使用graphlab 使用我不在虚拟环境中的其他文件创建
有可能这样做吗?如果是的话如何。更具体地说,我希望能够使用
在我的非 virtualenv python 文件中!
python - 使用 Anaconda 的 Python 版本创建 virtualenv
创建使用与机器默认 Python 不同的 Python 版本的 virtualenv 时出错,而机器上安装了 Anaconda。我创建了一个新的虚拟环境:
当我需要 python2.7 时,这创建了一个带有机器默认 python2.6 的目录。然后,我在这里阅读并尝试:
virtualenv -p /usr/local/anaconda/bin/python2.7 ~/graphlabcreate
并收到以下错误:
当我运行时也会发生同样的情况:
编辑:
python - Python - ImportError:没有名为 cy_ipc 的模块
我正在尝试开始使用 Python 2.7
。我已经安装了程序以及一些包,包括graphlab
,并且我可以执行一些基本操作,但是,当我尝试将包导入我的代码时出现错误。
我的代码是:
我用谷歌搜索更改了我的PYTHONPATH和PATH(包括 PythonPath),但它仍然无法正常工作。
我尝试了几种解决方案,但都没有奏效。
我会很感激一些帮助。
python - 如何解决: ImportError:“没有名为'graphlab'的模块?
通过终端中的“source activate graphlab”,我可以启动 graphlab。
我这样创建它:“conda create -n graphlab python=2.7 anaconda”,因为未经测试且不推荐将 virtualenv 与 Anaconda 一起使用(根据终端中的警告,我不知道是否真的是这种情况.)。
启动graphlab后,终端显示:
但是当我想在 Spider IDE 中导入 graphlab 时,它会显示以下错误:
我该如何解决这个问题?我对安装这些东西完全陌生,所以希望有人可以帮助我进行广泛的逐步解释。