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 导入