之前UBUNTU8.04安裝KSCOPE時,
直接用APT-GET的指令即可
但安裝9.10的就不能這樣用了(不知道為什麼),
直 接手動安裝吧
下載KSCOPE的程式下來裝吧
http://sourceforge.net/projects/kscope/files/
聴 說新版的不好用,所以就下載1.6.2版的,這好像是1.9之前的最終版
下載完成後解壓
tar zxvf kscope-1.6.2.tar.gz
cd kscope-1.6.2
執行 ./configure
結果如下
checking build system type... i686-pc-linux-gnu
checking host system type... i686-pc-linux-gnu
checking target system type... i686-pc-linux-gnu
checking for a BSD-compatible install... /usr/bin/install -c
checking for -p flag to install... yes
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /bin/mkdir -p
checking for gawk... no
checking for mawk... mawk
checking whether make sets $(MAKE)... yes
checking for kde-config... not found
configure: error: The important program kde-config was not found!
Please check whether you installed KDE correctly.
最後兩行有個錯誤訊息
那是因為少了kdelibs4c2a這個套件
直接 sudo apt-get install kdelibs4c2a安裝即可
這套件安裝的時間有點久.......
主要是因為我不知道國 內映射檔的網址
所以要下載很久
2.
sudo aptitude install build-essential
this will download and install the essential lib that is build related, such as gcc g++
but that is for other Linux distribution system, my is Ubuntu, so we should install the needed libs
sudo aptitude install build-essential
this will download and install the essential lib that is build related, such as gcc g++ ....