所以我正在测试https://notebooks.azure.com,我想使用pip安装graphlab,但是出现以下错误:

Collecting https://get.graphlab.com/GraphLab-Create/2.1/[email protected]/4979-2629-7787-8767-049A-C0BB-5869-FBD6/GraphLab-Create-License.tar.gz Retrying (Retry(total=4, connect=None, read=None, redirect=None)) after connection broken by ProxyError('Cannot connect to proxy., OSError('Tunnel connection failed: 403 Forbidden',))':/GraphLab-Create/2.1/[email protected]/4979-2629-7787-8767-049A-C0BB-5869-FBD6/GraphLab-Create-License.tar.gz

我环顾四周,发现一些答案,提示您必须指定要使用的代理,但是我无法在天蓝色的paltform中找到与代理有关的任何内容。

最佳答案

这里有两个问题。

1)我无法在Python 3.5上安装GraphLab。
我查看了文档,看来GraphLab目前仅受Python 2支持。 https://turi.com/download/install-graphlab-create-command-line.html

2)我无法在Azure笔记本上安装GraphLab
您看到的代理问题是由于Azure笔记本无法打开网络引起的。 Azure笔记本限制对已知站点的访问。我已将graphlab.com添加为已知的良好站点。现在,您可以按照最初尝试的方式安装graphlab。

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

关于python - 无法在Azure笔记本上安装Graphlab create,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/43698145/

10-09 17:14