0

I'm running python 3.6.9 on Ubuntu and I wish to create a zip file (based on 2 files).

I'm running pip3 install ZipFile and I'm getting the following error

> Collecting ZipFile   Could not find a version that satisfies the
> requirement ZipFile (from versions: ) No matching distribution found
> for ZipFile

If i can not update my python version - which module I can use ?

OneCricketeer
  • 179,855
  • 19
  • 132
  • 245
dzbeda
  • 173
  • 2
  • 9

1 Answers1

0

zipfile is included in the python standard library, you don't have to install it.

Sören
  • 1,803
  • 2
  • 16
  • 23