Ami*_*tel 5 upgrade apt software-installation poppler
我的系统有poppler-utils v0.24.5. 从官方网站我发现最新版本是0.40.0.
我尝试使用以下命令更新它
sudo apt-get install --only-upgrade poppler-utils
但它不会升级并显示以下消息。
poppler-utils is already the newest version.
0 upgraded, 0 newly installed, 0 to remove and 14 not upgraded.
有人可以帮我升级到最新版本吗?
这是因为 Ubuntu 专注于稳定性,而不是最前沿的软件包,这意味着存储库中的软件可能已经过时,您必须自己从源代码构建它。
首先删除当前安装的版本
sudo apt-get purge poppler-utils
Run Code Online (Sandbox Code Playgroud)
安装所需的构建工具
sudo apt-get install build-essential checkinstall
Run Code Online (Sandbox Code Playgroud)
运行这些命令来构建和安装
wget --directory-prefix=~ poppler.freedesktop.org/poppler-0.40.0.tar.xz
tar -xvzf ~/poppler-0.40.0.tar.xz
cd ~/poppler-0.40.0
./configure
make
sudo checkinstall
Run Code Online (Sandbox Code Playgroud)
现在poppler-0.40.0已安装在您的计算机上。
| 归档时间: |
|
| 查看次数: |
5288 次 |
| 最近记录: |