无法从我的邮件中收到的链接安装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)发布于 2018-08-28 07:54:39
问题是,您试图在Python3环境中安装GraphLab Create,而不是在Python2环境中。请参阅此链接--> https://turi.com/download/install-graphlab-create-command-line.html,并仔细阅读option2中提到的安装过程。
我发现安装GraphLab Create的最佳方法是使用virtualenv创建一个python 2虚拟环境,然后通过pip install进行安装。
注意:作为预防措施,我不会公开发布产品许可证密钥。
发布于 2020-09-18 15:52:06
我把问题解决了。从conda终端创建一个虚拟环境。使用conda create -n gl-env python=2.7命令。请确保在末尾添加python=2.7。然后使用典型的graphlab创建命令和您的电子邮件和产品密钥。
注意:这是一个版本兼容性问题。
https://stackoverflow.com/questions/51573351
复制相似问题