跳至內容
MasterDragon
使用者工具
登入
網站工具
搜尋
工具
顯示頁面
舊版
反向連結
最近更新
多媒體管理器
網站地圖
登入
>
最近更新
多媒體管理器
網站地圖
足跡:
os:linux:centos_-_install_gcc
本頁是唯讀的,您可以看到原始碼,但不能更動它。您如果覺得它不應被鎖上,請詢問管理員。
====== Install Development Tools in Linux (GNU GCC Compiler and others) ====== ===== Introduction ===== If you plan to use your computer to develop software, or simply install software from sources, you will need some basic tools like: gcc\\ c++\\ make\\ others\\ These tools are installed in different ways, depending your Linux distribution, here I will cover Fedora, Debian and derivatives (like Ubuntu or Mint) and Arch Linux. ===== Fedora ===== sudo yum update sudo yum groupinstall "Development Tools" "Legacy Software Development" ===== Debian / Ubuntu / Debian derivatives ===== sudo apt-get update sudo apt-get install build-essential ===== Arch Linux ===== sudo pacman -Sy base-devel You now have the needed tools to compile software in your Linux box. You can verify the version of packages you have with: gcc -v and make -v ====== 其他來源 ====== <code bash> yum -y install gcc yum -y install gcc-c++ yum install make #-- 或者 yum groupinstall "Development Tools" #-- 或者 yum install gcc gcc-c++ kernel-devel </code> ====== For CentOS 7 ====== Command to list groups on a CentOS / RHEL 7 # yum group list # yum group install "Development Tools" ====== For Ubuntu 18.04 ====== To install development tools, run: sudo apt-get install build-essential Any other tools can be installed with: sudo apt-get install tool-name
os/linux/centos_-_install_gcc.txt
· 上一次變更: 2019/11/16 08:12 由
127.0.0.1
頁面工具
顯示頁面
舊版
反向連結
回到頁頂