解决pip更新问题,You are using pip version 18.1, however version 19.2.1 is available.

You are using pip version 18.1, however version 19.2.1 is available.

解决result = finder(distlib_package).find(name).bytes
AttributeError: ‘NoneType’ object has no attribute ‘bytes’
You are using pip version 18.1, however version 19.2.1 is available.
You should consider upgrading via the ‘python -m pip install --upgrade pip’ command.

尝试了很多方法都没解决成功,比如

python -m pip install -U --force-reinstall pip
python -m pip install --upgrade pip

即使在管理员模式下使用cmd也不行
最后在Stackflow上发现这条宝藏语句,可行!worked like a charm
特地保存下来

easy_install -U pip

你可能感兴趣的:(python)