GraphLab-Create Module未安装在Python 3.5(ubuntu)上

我使用了以下命令:pip install –upgrade –no-cache-dir https://get.graphlab.com/GraphLab-Create/2.1/email_address/token/GraphLab-Create-License.tar.gz但是出现了这个错误:找不到满足graphlab-create = ...

我使用了以下命令:
pip install –upgrade –no-cache-dir https://get.graphlab.com/GraphLab-Create/2.1/email_address/token/GraphLab-Create-License.tar.gz

但是出现了这个错误:
找不到满足graphlab-create> = 2.1要求的版本(来自GraphLab-Create-License == 2.1)(来自版本:)
找不到针对graphlab-create&== 2.1的匹配分布(来自GraphLab-Create-License == 2.1)

我尝试下载文件并手动安装它,但这也没有解决问题.

解决方法:

如先前答案中所写,您应该使用Python 2.7而不是3.5.

使用pip2.7,因为pip可能与Python 3.5相关联:

pip2.7 install --upgrade --no-cache-dir https://get.graphlab.com/GraphLab-Create/2.1/email_address/token/GraphLab-Create-License.tar.gz

本文标题为:GraphLab-Create Module未安装在Python 3.5(ubuntu)上

基础教程推荐