我在将 cmake 安装到我的机器上时遇到问题。这是我正在运行的内容:
sudo apt-get -f install cmake
这是输出:
Reading package lists...
Building dependency tree...
Reading state information...
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help resolve the situation:
The following packages have unmet dependencies:
cmake : Depends: libjsoncpp1 but it is not installable
我试过运行 apt-get update 但它似乎没有帮助。请让我知道我应该尝试什么。很乐意提供更多信息。
谢谢!:)
编辑:“apt-cache policy cmake”的输出如下:
cmake:
Installed: (none)
Candidate: 3.5.2-2ubuntu1~ubuntu16.04.1~ppa1
Version table:
3.5.2-2ubuntu1~ubuntu16.04.1~ppa1 0
500 http://ppa.launchpad.net/thomas-schiex/blender/ubuntu/ trusty/main amd64 Packages
3.2.2-2~ubuntu14.04.1~ppa1 0
500 http://ppa.launchpad.net/george-edison55/cmake-3.x/ubuntu/ trusty/main amd64 Packages
2.8.12.2-0ubuntu3 0
500 http://ca.archive.ubuntu.com/ubuntu/ trusty/main amd64 Packages
100 /var/lib/dpkg/status
谢谢!
更新:谢谢!我能够安装cmake。但是,我似乎无法用它做任何事情。我在跑
cmake ../
在我正在尝试制作的项目中创建的一个空目录中。这是输出:
CMake Error: Could not find CMAKE_ROOT !!!
CMake has most likely not been installed correctly.
Modules directory not found in
/usr/bin
CMake Error: Error executing cmake::LoadCache(). Aborting.
有人知道下一步该怎么做吗?我试过卸载和重新安装以及apt-get更新。同样,如果需要,我可以在此处发布更多信息。
谢谢!
main
您可以通过指定其版本从存储库安装 cmake :如果失败,请尝试以下方法之一:
从系统中删除 PPA 及其软件包,然后从
main
存储库安装版本暂时禁用 PPA,安装
cmake
然后启用 PPA:然后你可以尝试构建简单的 cmake 示例。快速谷歌搜索给了我cmake-example.git存储库。我不知道这是什么,但它编译速度快并且运行正常:
您可以通过执行编译的程序来测试它:
如果失败,那么您的系统中还有其他问题。
从 Ubuntu 18.04 和 19.10 的源代码安装 Cmake 3.16.5:
wget https://github.com/Kitware/CMake/releases/download/v3.16.5/cmake-3.16.5.tar.gz
tar vxzv cmake-3.16.5.tar.gz
cd cmake-3.16.5
./bootstrap
make
sudo make install
cmake
我的 Ubuntu 18.04 VM 上安装了两个版本:旧版本
cmake
已由sudo apt install cmake
.但是当前最新的稳定版 cmake 3.16.5 也可以使用以下方式安装
snap
:有一个14.04 版本的非官方存储库。