很簡單但是如果不知道的話,真是鬱悶!
原因是大多數linux os 只是預設安裝了gcc,但是並沒有對其配置,比如標頭檔案之類
如果你直接 gcc hello.c 的話會提示你「stdio.h」找不到之類
下邊這條命令就是安裝配置檔案:
(終端下輸入)
sudo apt-get install build-essential
ps:如果提示要你更換安裝介質(cdroom),說明你的軟體源預設是從ubuntu的cdrom安裝的
即使是你從ubuntu的官方**上現在安裝的,而且你也配置了軟體更新源
解決方法也很簡單:系統--系統管理--軟體源把從光碟安裝去掉就可以了
你在執行
sudo apt-get install build-essential
的話就沒有問題了
Linux Ubuntu下解壓命令
tar 解包 tar xvf filename.tar 打包 tar cvf filename.tar dirname 注 tar是打包,不是壓縮!gz解壓1 gunzip filename.gz 解壓2 gzip d filename.gz 壓縮 gzip filename tar.gz 和 tg...
Linux Ubuntu下 apt get包管理
注意不同系統下包 管理機制也是不同的 1.redhat系列 redhat centos fedora等 2.debian系列 debian ubuntu等 redhat 系列 1 常見的安裝包格式 rpm包,安裝rpm包的命令是 rpm 引數 2 包管理工具 yum 3 支援tar包 debian系...
linux ubuntu 下python版本切換
此為後續 linux中根據系統不一樣一般都會自帶2.x版本,這個不能刪除 如下 檢視系統python的指向版本 file usr bin python檢視系統是否已經存在需要的版本 cd usr bin python find python sudo apt get install python3....