在Kubuntu19.04上,我正在尝试安装f.lux,但是我缺少python依赖项。当我试图安装它时,终端上写着:
Package python-gconf is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or is only available from another source
E: Package 'python-gconf' has no installation candidate发布于 2019-05-19 17:59:45
您可以从python-gconf手动从宇宙存储库安装:
cd ~/Downloads
wget http://mirrors.kernel.org/ubuntu/pool/universe/g/gnome-python/python-gconf_2.28.1+dfsg-1.2_amd64.deb
sudo apt-get install ./python-gconf_2.28.1+dfsg-1.2_amd64.deb(通常不推荐这种方法,但我们没有其他方法)
https://askubuntu.com/questions/1144556
复制相似问题