Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Python rarfile package: fail to open files

So I was trying to archive a .rar file using rarfile library in Python, but it keeps saying "failed to open". Am using Mac OS X El Capitan, python 2.7. Any help would be appreciated, thanks.

Original code:

rf = RarFile('test.rar')
rf.extractall()

Error message:

File "Test.py", line 271, in <module>
rf.extractall()

File "/Users/user/Library/Python/2.7/lib/python/site-packages/rarfile.py", line 679, in extractall
self._extract(fnlist, path, pwd)

File "/Users/user/Library/Python/2.7/lib/python/site-packages/rarfile.py", line 1238, in _extract
check_returncode(p, output)

File "/Users/user/Library/Python/2.7/lib/python/site-packages/rarfile.py", line 1961, in check_returncode
raise exc(msg)

rarfile.RarUnknownError: Unknown exit code [1]: bsdtar: Error opening archive: Failed to open '--'
like image 365
user3451228 Avatar asked Jun 09 '16 23:06

user3451228


1 Answers

Now you need to install unrar for Ubuntu/Linux:

sudo apt-get install -y rar unrar

or the following for MacOS:

brew install unrar
like image 126
Marx Viana Avatar answered Sep 23 '22 00:09

Marx Viana