【Python 错误解决】 ---- Could not find a version that satisfies the requirement execjs

1. 报错描述

安装 execjs 的时候报错!!!

2. 报错代码

pip install execjs

3. 报错图片

输入图片说明

4. 错误

WARNING: Ignoring invalid distribution -ip (c:\python310\lib\site-packages)
ERROR: Could not find a version that satisfies the requirement execjs (from versions: none)
ERROR: No matching distribution found for execjs

5. 分析原因

没有找到对应的 execjs 包!!!

6. 解决办法

pip install PyExecJS

7. 安装结果

输入图片说明

8. 查询 pip 安装包

pip 官网

9. execjs 包查询

输入图片说明

10. 查询包信息

PyExecJS 1.5.1

输入图片说明

猜你喜欢

转载自blog.csdn.net/m0_38082783/article/details/132083797