尝试安装graphlab时出错

问题描述 投票:1回答:1

当我尝试导入graphlab时,我得到ImportError。我在使用OSX Yosemite 10.10.4的macbook上。我有anaconda但我的envs文件夹是空的。根据一些研究,我尝试使用conda config --add create_default_packages graphlab-create。但这没有做任何事情。所以,我试过了

pip install graphlab-create --no-cache-dir

Collecting graphlab-create
  Downloading GraphLab-Create-1.6.1.tar.gz (39.9MB)
    100% |████████████████████████████████| 39.9MB 136kB/s 

这是命令python setup.py egg_info的完整输出:

Traceback (most recent call last):
  File "<string>", line 20, in <module>
  File "/private/var/folders/f4/wdrwxpcj0x95cdhkx5qpfbvr0000gp/T/pip-build-k0zi9aqh/graphlab-create/setup.py", line 87
    print ""
           ^
SyntaxError: Missing parentheses in call to 'print'

    ----------------------------------------
Command "python setup.py egg_info" failed with error code 1 in /private/var/folders/f4/wdrwxpcj0x95cdhkx5qpfbvr0000gp/T/pip-build-k0zi9aqh/graphlab-create

它看起来很好并下载100%,但后来出现上述错误。

python macos ipython-notebook anaconda graphlab
1个回答
1
投票

您似乎正在尝试使用Python 3进行安装。尝试使用Python 2.7.X安装它。它对我有用!

© www.soinside.com 2019 - 2024. All rights reserved.