我在执行任何请求时都遇到这个问题apt
:
/sbin/ldconfig.real: /usr/local/lib/libwebdriverxx.so is not an ELF file - it has the wrong magic bytes at the start.
我尝试这样做:
sudo apt-get purge libwebdriver
但包不存在。有什么办法可以解决这个问题吗?
答案1
将有问题的库移出
sudo mv /usr/local/lib/libwebdriverxx.so ~/
sudo ldconfig
然后重试。