使用pip在Python 3.3上安装ckanclient时出错

时间:2014-03-31 20:16:04

标签: python pip python-3.3 ckan

我正在尝试使用pip在Python 3.3上安装ckanclient。我正在使用的命令行是:

  

c:\ Python33 \ Scripts> pip install ckanclient

我得到了:

Downloading/unpacking ckanclient
  Downloading ckanclient-0.10.tar.gz
  Running setup.py (path:c:\users\lgms\appdata\local\temp\pip_build_lgms\ckanclient\setup.py) egg_info for package ckanclient
    Traceback (most recent call last):
      File "<string>", line 17, in <module>
      File "c:\users\lgms\appdata\local\temp\pip_build_lgms\ckanclient\setup.py"
, line 8, in <module>
        from ckanclient import __version__, __description__, __long_description_
_, __license__
      File ".\ckanclient\__init__.py", line 100
        except HTTPError, inst:
                        ^
    SyntaxError: invalid syntax
    Complete output from command python setup.py egg_info:
    Traceback (most recent call last):

  File "<string>", line 17, in <module>

  File "c:\users\lgms\appdata\local\temp\pip_build_lgms\ckanclient\setup.py", li
ne 8, in <module>

    from ckanclient import __version__, __description__, __long_description__, _
_license__

  File ".\ckanclient\__init__.py", line 100

    except HTTPError, inst:

                    ^

SyntaxError: invalid syntax

----------------------------------------
Cleaning up...

我需要了解那里发生的事情以及如何解决问题。我的操作系统是Windows 7 Pro,我使用的是标准的Python发行版(我也安装了Anaconda Python,但这看起来不像版本冲突)。

完整的错误日志位于:http://pastebin.com/NgFFCrcK

1 个答案:

答案 0 :(得分:1)

ckanclient,以及CKAN本身,与Python 3不兼容。您需要2.7。

另一个提示:不推荐使用ckanclient,请参阅https://github.com/okfn/ckanclient-deprecated。但是,如果由于某种原因你确实需要它,请不要使用相当旧的pip(例如pypi)版本,而是使用github的最新版本。