3

当我尝试使用 pip 在 Windows 上安装 pylint 时遇到了这个问题,我真的不知道它来自哪里。

    C:\Python33\Scripts>pip.exe install pylint
    Downloading/unpacking pylint

      Getting page https://pypi.python.org/simple/pylint/
      URLs to search for versions for pylint:
      * https://pypi.python.org/simple/pylint/
      Analyzing links from page https://pypi.python.org/simple/pylint/

    ...

    byte-compiling C:\Python33\Lib\site-packages\pylint\utils.py to utils.cpython-33.pyc

    byte-compiling C:\Python33\Lib\site-packages\pylint\__init__.py to __init__.cpython-33.pyc

    byte-compiling C:\Python33\Lib\site-packages\pylint\__pkginfo__.py to __pkginfo__.cpython-33.pyc

    error: The system cannot find the file specified


    running 2to3 on C:\Python33\Lib\site-packages\pylint\test

    ----------------------------------------

    Cleaning up...

      Removing temporary dir c:\windows\temp\pip_build_abrow198...
    Command C:\Python33\python.exe -c "import setuptools;__file__='c:\\windows\\temp\\pip_build_abrow198\\pylint\\setup.py';exec(compile(open(__file__).read().replace('\r\n', '\n'), __file__, 'exec'))" install --record c:\windows\temp\pip-cq0pam-record\install-record.txt --single-version-externally-managed failed with error code 1 in c:\windows\temp\pip_build_abrow198\pylint
4

1 回答 1

0

看起来 Pylint 及其依赖项 logilab-common 的设置脚本中存在错误。pip install pylint使用or构建时遇到错误python setup.py install

该错误通常看起来像这样,并且在.pyc文件被字节编译后立即发生:

error: The system cannot find the file specified
running 2to3 on C:\Python33\Lib\site-packages\pylint\test

仅仅确保它2to3.py在 PATH 上可用似乎是不够的。2to3 本身会运行,但不会安装 Pylint。

我只是花了一点时间试图让这个工作,并找到了两个有希望的建议:

第一个选项,创建一个自定义 bat 文件,以便 2to3 有效地在您的 PATH 上(参见SO thread , issue tracker)。我设法2to3在 PowerShell 和 CMD 中作为裸命令运行,但无法安装 Pylint。其他人可能有更多的运气。

第二种选择,安装不同版本的 Pylint 和 logilab-common,它们通过 distutils 而不是命令行调用 2to3(请参阅未合并的拉取请求)。这对我立即起作用。

BitBucket 将自 10 月以来的拉取请求列为“开放”。我不知道它什么时候可能会被合并,或者在 PyPI 上可能会持续多久。

于 2013-11-27T02:39:22.760 回答