You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The version of libarchive included in Mac OS X is obsolete, consequently many people use Homebrew to install another version, but then they have to set the LIBARCHIVE environment variable, otherwise the obsolete version is still used by the Python module.
It could be a good idea to automatically detect and use by default the libarchive version installed by Brew, by doing something similar to the shell one-liner find "$(brew --cellar libarchive)" -name libarchive.13.dylib | sort | tail -1 and the Python script brew_find_libarchive.
The text was updated successfully, but these errors were encountered:
The version of
libarchive
included in Mac OS X is obsolete, consequently many people use Homebrew to install another version, but then they have to set theLIBARCHIVE
environment variable, otherwise the obsolete version is still used by the Python module.It could be a good idea to automatically detect and use by default the
libarchive
version installed by Brew, by doing something similar to the shell one-linerfind "$(brew --cellar libarchive)" -name libarchive.13.dylib | sort | tail -1
and the Python script brew_find_libarchive.The text was updated successfully, but these errors were encountered: