我正在尝试使用QT-Creator来构建一个程序,我得到的信息是libdb4.8++
是必需的,而且是不可用的。
我试过使用libdb5.1
和libdb4.8
,但它仍然要求使用libdb4.8++
我目前正在使用Ubuntu12.04LTS。如果没有方法安装Ubuntu,那么Ubuntu的哪个版本将与libdb4.8++
兼容?
发布于 2014-03-01 23:10:50
Ubuntu (10.04)确实有libdb4.8++
,通过在/etc/apt/sources.list
中为它添加一个条目,您可以安装它:
(echo deb http://de.archive.ubuntu.com/ubuntu/ lucid main restricted universe multiverse; echo deb http://de.archive.ubuntu.com/ubuntu/ lucid-updates main restricted universe multiverse; echo deb http://security.ubuntu.com/ubuntu lucid-security main restricted universe multiverse) | sudo sh -c 'cat >>/etc/apt/sources.list'
sudo apt-get update
sudo apt-get install libdb4.8++
https://askubuntu.com/questions/290094
复制相似问题