2

I am trying to install py7zlib package, however I am getting below error:

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

I am using Python 3.6.

I tried:

pip install py7zlib

I would like to have this package working properly.

martineau
  • 119,623
  • 25
  • 170
  • 301
b36
  • 105
  • 1
  • 8
  • Are you looking for [this](https://github.com/fancycode/pylzma)? – FlyingTeller Aug 06 '19 at 15:17
  • I would like to use py7zlib package, because I cannot install pylzma as well. – b36 Aug 06 '19 at 15:21
  • Could you add a link or something to the py7zlib package you are trying to install? The only thing I can find is a file in the `pylzma` package with that name – FlyingTeller Aug 06 '19 at 15:32
  • 1
    If you are using Windows, you can download a pre-built version of `pylzma` module from [here](https://www.lfd.uci.edu/~gohlke/pythonlibs/). I think it includes the `py7zlib` you want. – martineau Aug 06 '19 at 15:36
  • Thanks, @martineau. I will try this. Could you please instruct how to install pre-build version of this package? Thank you in advance. – b36 Aug 06 '19 at 15:46
  • 1
    b36: See [How do I install a Python package with a .whl file?](https://stackoverflow.com/questions/27885397/how-do-i-install-a-python-package-with-a-whl-file) – martineau Aug 06 '19 at 16:22
  • 1
    b36: [How to read from a text file compressed with 7z?](https://stackoverflow.com/questions/20104460/how-to-read-from-a-text-file-compressed-with-7z) may also be of interest. – martineau Aug 06 '19 at 16:31

1 Answers1

1

pip install pylzma.

This package include py7zlib

  • 1
    Please add further details to expand on your answer, such as working code or documentation citations. – Community Sep 09 '21 at 16:34