zstd 没有属性“压缩”

zstd 没有属性“压缩”

尽管我在 Ubuntu 上安装了最新版本的 zstd,但当我尝试运行该命令时仍出现此错误。有人能帮我解决这个问题吗?

终端截图

答案1

首先尝试创建“压缩机”的实例:

import zstandard

compressor = zstandard.ZstdCompressor()

input_data = b'11111'

compressed_data = compressor.compress(input_data)
Out[25]: b'(\xb5/\xfd \x05)\x00\x0011111'

https://python-zstandard.readthedocs.io/en/latest/compressor.html

减压方法也是如此......

相关内容