Pipenv libarchive error: no such file or directory: b'liblibarchive.a'

Pipenv libarchive error: no such file or directory: b'liblibarchive.a'

使用 pipenv 安装 libarchive 返回 file/directory 未找到错误。 pip 文件包含包 libarchive==0.4.7。显示错误的日志:

...
[pipenv.exceptions.InstallError]:   Verifying that the library is accessible.
[pipenv.exceptions.InstallError]:   Library can not be loaded: [Errno 2] No such file or directory: b'liblibarchive.a'
[pipenv.exceptions.InstallError]:   error: [Errno 2] No such file or directory: b'liblibarchive.a'
[pipenv.exceptions.InstallError]:   ----------------------------------------
[pipenv.exceptions.InstallError]:   ERROR: Failed building wheel for libarchive
...

我在 Linux.

上使用 Python3.8

文件可能已重命名。为重命名的文件创建符号 link 修复了问题:

cd /usr/lib/x86_64-linux-gnu/
ln -s -f libarchive.a liblibarchive.a