欢迎您访问 最编程 本站为您分享编程语言代码,编程技术文章!
您现在的位置是: 首页

python中shutil库的安装

最编程 2024-01-17 19:36:58
...

shutil库与文件处理操作相关,是比较常用的库,所以其安装也比较重要。

直接使用以下代码安装会出现报错

import shutil

ERROR: Could not find a version that satisfies the requirement shutil (from versions: none)
ERROR: No matching distribution found for shutil

寻找原因发现是安装shutil的名字并不是shutil,而是shutilwhich

安装该模块
pip install shutilwhich
导入该模块
import shutil