2

无法从我在邮件中获得的链接安装 Graphlab create。面临以下问题。有人可以帮忙解决以下问题吗?

(env) C:\Windows\system32>pip install --upgrade --no-cache-dir https://get.graphlab.com/GraphLab-Create/2.1/sinha.dibyojyoti@gmail.com/xxxxxxx/GraphLab-Create-License.tar.gz

Collecting https://get.graphlab.com/GraphLab-Create/2.1/sinha.dibyojyoti@gmail.com/xxxxx/GraphLab-Create-License.tar.gz
Downloading https://get.graphlab.com/GraphLab-Create/2.1/sinha.dibyojyoti@gmail.com/xxxxx/GraphLab-Create-License.tar.gz
Collecting graphlab-create>=2.1 (from GraphLab-Create-License==2.1)
Could not find a version that satisfies the requirement graphlab-create>=2.1 
(from GraphLab-Create-License==2.1) (from versions: )

No matching distribution found for graphlab-create>=2.1 (from GraphLab-Create-License==2.1)
4

2 回答 2

3

问题是您试图在Python 3环境而不是Python 2环境中安装 GraphLab Create。参考这个链接--> https://turi.com/download/install-graphlab-create-command-line.html,仔细阅读option2中提到的安装过程。

我发现安装 GraphLab Create 的最佳方法是使用virtualenv创建一个python 2 虚拟环境,然后通过pip install 安装

注意:作为预防措施,我不会公开发布产品许可证密钥。

于 2018-08-27T23:54:39.453 回答
0

我解决了这个问题。从您的 conda 终端使用 conda create -n gl-env python=2.7 命令创建一个虚拟环境。请确保在最后添加 python=2.7。然后使用您的电子邮件和产品密钥使用典型的 graphlab 创建命令。

注意:这是版本兼容性问题。

于 2020-09-18T07:52:05.987 回答