我在安装kTechlab包时遇到问题。
我尝试在Ubuntu18.04中安装kTechlab
sudo apt-get install git kdelibs5-dev kdevplatform-dev qt4-dev-tools cmake libglib2.0-dev
mkdir git-ktechlab && cd git-ktechlab
git clone git://github.com/ktechlab/ktechlab.git
cd ktechlab
mkdir build && cd build
cmake .. -DCMAKE_BUILD_TYPE=debugfull -DCMAKE_INSTALL_PREFIX=/usr/local/
make
sudo make install
kbuildsycoca4 &> /dev/null
update-mime-database /usr/share/mime
make: *** No targets specified and no makefile found. Stop.我怎样才能纠正这个错误呢?
发布于 2019-06-26 12:42:07
git clone git://github.com/ktechlab/ktechlab.git确保git克隆步骤成功:我将使用HTTPS URL,而不是git:// URL
git clone https://github.com/ktechlab/ktechlab.githttps://stackoverflow.com/questions/56765305
复制相似问题