首页 > 编程语言 >Python:ValueError: Unable to find resource t64.exe in package pip._vendor.distlib

Python:ValueError: Unable to find resource t64.exe in package pip._vendor.distlib

时间:2022-11-26 11:13:19浏览次数:39  
标签:distlib exe resource t64 Unable setuptools pip find

背景

由于pip版本过高 22.3.1,安装下载pip20.2.4时报以下错误

ValueError: Unable to find resource t64.exe in package pip._vendor.distlib

解决方案:

卸载 setuptools
python -m pip uninstall pip setuptools
重新安装 setuptools
pip install --upgrade setuptools 

解决完毕

标签:distlib,exe,resource,t64,Unable,setuptools,pip,find
From: https://www.cnblogs.com/xudong5273/p/16927069.html

相关文章