系统相关
首页 > 系统相关> > GraphLab-Create Module未安装在Python 3.5(ubuntu)上

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> = 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

标签:python-3-5,machine-learning,graphlab,python
来源: https://codeday.me/bug/20191026/1936047.html