1

我尝试在我的 Win10 上安装 Read the Docs 的本地实例

当我遵循此文档时: http:
//docs.readthedocs.io/en/latest/install.html

并输入:

pip install -r requirements.txt

我收到此错误:

Collecting Distutils2==1.0a3 (from -r requirements/pip.txt (line 65))
  Using cached Distutils2-1.0a3.tar.gz
    Complete output from command python setup.py egg_info:
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
      File "C:\Users\USER\AppData\Local\Temp\pip-build-xseiavup\Distutils2\setup.py", line 9, in <module>
        from distutils2.util import find_packages
      File "C:\Users\USER\AppData\Local\Temp\pip-build-xseiavup\Distutils2\distutils2\util.py", line 174
        except KeyError, var:
                       ^
    SyntaxError: invalid syntax

    ----------------------------------------
Command "python setup.py egg_info" failed with error code 1 in C:\Users\USER\AppData\Local\Temp\pip-build-xseiavup\Distutils2\

有人知道这个错误吗?

我的点子版本:8.1.2;
蟒蛇:3.5

4

1 回答 1

2

你有可能正在运行 Python 2pip吗?错误消息清楚地表明代码正在 Python 3 下执行,但具有 Python 2 语法。你会得到更好的结果吗

python -m pip install -r requirements.txt

我想知道?如果不是,则验证

python

运行版本 3.5 ...

哦。我刚刚检查了PyPI 上的 disutils2 页面

Distutils2 开发已停止。

tl;博士:现在继续使用 setuptools 和 pip,不要使用 distutils2。

看起来从来没有 Python 3 版本。看起来您可能需要更新您的代码。

于 2016-09-28T12:44:33.687 回答