python 读写.tar.gz文件 -- UnicodeDecodeError
Posted iupoint
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 读写.tar.gz文件 -- UnicodeDecodeError相关的知识,希望对你有一定的参考价值。
在用pip install 安装库的时候,偶尔会出现编码错误(如:UnicodeDecodeError: ‘gbk‘ codec can‘t decode byte),对此我们可先将包下载下来(一般为.tar.gz格式),然后修改其中的错误代码,再执行本地安装即可。
import tarfile import os #下载库安装包 pip download wlab #库包解压缩与压缩 def untar(fname, dirs): t = tarfile.open(fname) t.extractall(path = dirs) def tar(fname): t = tarfile.open(fname + ".tar.gz", "w:gz") for root, dir, files in os.walk(fname): print(root, dir, files) for file in files: fullpath = os.path.join(root, file) t.add(fullpath) t.close() untar(‘wlab-1.1.5.tar.gz‘, ‘.‘) #‘.‘表示解压到当前目录,‘./wlab‘,对解压后文件修正 tar(‘wlab-1.1.5‘) #安装库 pip install c:\\users\\epsoft\\wlab-1.1.5.tar.gz
参考资料:
以上是关于python 读写.tar.gz文件 -- UnicodeDecodeError的主要内容,如果未能解决你的问题,请参考以下文章