通过在Python 3中使用旧版本的setuptools,我似乎遇到了以下错误:
https://github.com/pypa/setuptools/issues/885
如何才能真正推进到更新版本以逃避此错误?这有点像22。
python -m pip install --upgrade pip setuptools wheel
答案 0 :(得分:1)
下载the source distribution,将其解压缩,然后安装如下:
$ wget https://pypi.python.org/packages/e0/02/2b14188e06ddf61e5b462e216b15d893e8472fca28b1b0c5d9272ad7e87c/setuptools-38.5.2.zip
$ unzip setuptools-38.5.2.zip
$ cd setuptools-38.5.2
$ python3 bootstrap.py
注意:安装pip
时无需wheel
或setuptools
。