Python - 创建 zip 文件
Python - create zip file
我 运行 python 3.6.9 Ubuntu 我想创建一个 zip 文件(基于 2 个文件)。
我正在 运行 pip3 install ZipFile,但出现以下错误
> Collecting ZipFile Could not find a version that satisfies the
> requirement ZipFile (from versions: ) No matching distribution found
> for ZipFile
如果我无法更新我的 python 版本 - 我可以使用哪个模块?
zipfile包含在python标准库中,您不必安装它。
我 运行 python 3.6.9 Ubuntu 我想创建一个 zip 文件(基于 2 个文件)。
我正在 运行 pip3 install ZipFile,但出现以下错误
> Collecting ZipFile Could not find a version that satisfies the
> requirement ZipFile (from versions: ) No matching distribution found
> for ZipFile
如果我无法更新我的 python 版本 - 我可以使用哪个模块?
zipfile包含在python标准库中,您不必安装它。