Mac 上的C 庫" />
如果您使用C 進行編碼(對此我非常懷疑,但如果您是!之後),本指南可能會解決您的問題。
1.第一步是安裝ncurses,如果你已經跳過這一步。
brew install ncurses
2.找到庫的安裝位置
brew info ncurses
3.輸出將包含庫的安裝位置,例如:
/opt/homebrew/Cellar/ncurses/6.5
記得你的版本就像我的一樣6.5
4.驗證庫和標頭:
ls /opt/homebrew/Cellar/ncurses/6.5/lib ls /opt/homebrew/Cellar/ncurses/6.5/include
記得更改版本
gcc main.c -o main -I/opt/homebrew/Cellar/ncurses/6.5/include -L/opt/homebrew/Cellar/ncurses/6.5/lib -lncurses
替換版本
export CPPFLAGS="-I/opt/homebrew/Cellar/ncurses/6.5/include" export LDFLAGS="-L/opt/homebrew/Cellar/ncurses/6.5/lib"
替換版本號碼
7.現在您可以使用以下指令編譯檔案:
gcc main.c -o main -lncurses
以上是在 Mac 上使用 C 匯入