1. Homebrew是一款Mac OS平台下的软件包管理工具,拥有安装、卸载、更新、查看、搜索等很多实用的功能。简单的一条指令,就可以实现包管理,而不用你关心各种依赖和文件路径的情况,十分方便快捷。
安装Homebrew的方法链接:
https://brew.idayer.com
https://zhuanlan.zhihu.com/p/90508170
均需要使用镜像站链接
2. Homebrew的基本使用方法链接:
https://www.jianshu.com/p/de6f1d2d37bf
- 安装任意包:
$ brew install <packageName>
实例安装node
$ brew install node
- 卸载任意包:
$ brew uninstall node
示例卸载git
$ brew uninstall git
标签:node,macOS,com,系统,https,Homebrew,brew,homebrew,安装 From: https://www.cnblogs.com/Parkins/p/16673747.html