Mac基本操作记录
1. 安装brew 执行以下命令即可安装brew最新版本(https://github.com/Homebrew/install) /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" 3.安装nvm curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.8/install.sh | bash nvm node npm之间的区别:1.nvm:nodejs 版本管理工具。 也就是说:一个 nvm 可以管理很多 node 版本和 npm 版本。 2.nodejs:在项目开发时的所需要的代码库 3.npm:nodejs 包管理工具。 在安装的 nodejs 的时候,npm 也会跟着一起安装,它是包管理工具。 npm 管理 nodejs 中的第三方插件 如果在新的终端输入 nvm 时提示:command not found: nvm 第一步:创建.bash_profile文件,~表示在~目录下,.表示隐藏文件,打开终端,输入命令如下 touch ~/.bash_profile 第二步:打开.bash_profile文件,输入命令如下: open -t ~/.bash