使用pipenv安装libchive时返回文件/目录未找到错误。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 .
文件可能被重命名了。创建一个指向重命名文件的符号链接修复了这个问题:
cd /usr/lib/x86_64-linux-gnu/
ln -s -f libarchive.a liblibarchive.a