pip install ExcelUtil ERROR: Could not find a version that satisfies the requirement ExcelUtil (from versions: none) ERROR: No matching distribution found for ExcelUtil
时间: 2023-08-28 10:21:42 浏览: 160
Tensorflow安装问题: Could not find a version that satisfies the requirement tensorflow
5星 · 资源好评率100%
这个错误提示是因为你所使用的命令 `pip install ExcelUtil` 中的 `ExcelUtil` 并不是一个标准的 Python 库,因此 `pip` 无法从官方源中找到对应的安装包。你可以先尝试更新 `pip`,命令为 `pip install --upgrade pip`,然后再尝试安装 ExcelUtil,如果仍然无法安装,你可以尝试使用其他库来实现你的需求,例如 `pandas` 库中对 Excel 文件的读写功能。命令为 `pip install pandas`。
阅读全文