1

当我尝试安装 Graphlab Create 时,它​​只是在重试连接。我家有健康的宽带 wifi 连接(没有代理)。

错误:(graphlab)ankit@ankit21:~$ pip install graphlab-create==0.9.1 Collecting graphlab-create==0.9.1 Retrying (Retry(total=4, connect=None, read=None, redirect=None)) after connection broken by 'ConnectTimeoutError(<pip._vendor.requests.packages.urllib3.connection.VerifiedHTTPSConnection object at 0x7fd6a16ae850>, 'Connection to 192.168.16.253 timed out. (connect timeout=15)')': /simple/graphlab-create/ 代理 192.168.16.253 是我大学互联网的代理。但我已将网络设置中的设置更改为自动代理。终端中的其他安装工作正常,只有这有问题。

4

2 回答 2

0

在官方网站 ( https://turi.com/download/install-graphlab-create.html?email=**YOU**%40gmail.com&key=**7C68-...-D3D7**) 我们有:

注册电子邮件地址:YOUR_ADDRESS

产品密钥:YOUR_PRODUCT_KEY

安装依赖项:

  • 安装 Anaconda

    bash /路径下载文件/Anaconda2-4.0.0-Linux-x86_64.sh

  • 创建 conda 环境

    conda create -n gl-env python=2.7 anaconda=4.0.0 source activate gl-env

  • 确保 pip 版本 >= 7

    康达更新点子

  • 安装 GraphLab 创建

    pip install --upgrade --no-cache-dir https://get.graphlab.com/GraphLab-Create/2.1/ YOUR_ADDRESS / YOUR_PRODUCT_KEY /GraphLab-Create-License.tar.gz

  • 确保安装 IPython 和 IPython Notebook

    conda 安装 ipython-notebook

于 2017-05-30T18:19:48.800 回答
0

您需要特定的学术许可证密钥,但尝试安装旧版本会自动将您的安装更新到 1.7.1。如果您选择从安装说明中复制代码并删除 --upgrade,并更改为 0.9.1,它仍然无法正常工作。

pip install --no-cache-dir https://get.dato.com/GraphLab-Create/0.9.1/your_key/GraphLab-Create-License.tar.gz

当您在 Dato 网站上注册 GraphLab 时,您可以获得最新版本的密钥。学术许可证对每位用户免费一年。

于 2016-01-02T08:40:43.347 回答