共计 1882 个字符,预计需要花费 5 分钟才能阅读完成。
xcode 的装置
我间接在利用商店装置的
装置 Homebrew
ARM 版 Homebrew 须要装置在 /opt/homebrew 门路下,第一个是中科大的镜像源
中科大镜像源
/bin/zsh -c "$(curl -fsSL https://gitee.com/cunkai/HomebrewCN/raw/master/Homebrew.sh)"
复制代码
官网镜像源
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"
复制代码
nvm 装置
github 上的会报 443,github 的一些域名的 DNS 解析被净化,导致 DNS 解析过程无奈通过域名获得正确的 IP 地址。通过配置 hosts 也能够应用 git 的地址。
- 首先上 ip 查问网站, 输出 raw.githubusercontent.com,查问对应的 ip
2. 批改 hosts 在终端输出命令,vi /etc/hosts 减少 185.199.110.133 raw.githubusercontent.com。点击 esc 按键,并输出:wq 即可实现保留退出 图为批改过后的文件
gitee 的装置地址
git clone https://gitee.com/mirrors/nvm.git ~/.nvm && cd ~/.nvm && git checkout `git describe --abbrev=0 --tags`
复制代码
git 的装置地址
$ curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.35.3/install.sh | bash
复制代码
解决 commond not found:nvm
- 进入.nvm 文件夹 cd ~/.nvm
- 查看有没有.bash\_profile 文件,间接输出 ls 就能够查看以后文件夹下文件如果有的话间接关上 open .bash\_profile 进入.nvm 文件夹。如果没有的话先新建 touch .bash\_profile,新建实现之后,关上.bash\_profile,粘贴进去下边这两行代码,是两行,有换行,粘贴进去间接退出就可
export NVM_DIR="$HOME/.nvm"
[-s "$NVM_DIR/nvm.sh"] && \. "$NVM_DIR/nvm.sh" # This loads nvm
#批改为 taobao 镜像源
export NVM_NODEJS_ORG_MIRROR=http://npm.taobao.org/mirrors/node
export NVM_IOJS_ORG_MIRROR=http://npm.taobao.org/mirrors/iojs
复制代码
- 编译.bash\_profile source .bash\_profile
- 查看是否能够应用 nvm -v
解决每次敞开终端后,都须要从新执行 source .bash\_profile 能力从新应用 nvm 命令。起因:没有将配置增加到.zshrc 文件中
- 到这里的时候须要看看咱们是否有.zshrc,如果有间接关上 open ~/.zshrc。而后粘贴下边这两行代码
export NVM_DIR=~/.nvm
[-s "$NVM_DIR/nvm.sh"] && . "$NVM_DIR/nvm.sh"
复制代码
- 如果没有.zshrc
第一步创立 zshrc touch .zshrc 第二步关上 zshrc open -e .zshrc 第三部在 zshrc 文件里输出 source ~/.bash\_profile 而后保留:source ~/.bash\_profile 第四步刷新环境 source .zshrc
如果应用的是 zsh 终端,只须要增加 source .zshrc 即可。查看应用的终端命令 echo $SHELL 零碎装置的终端 cat /etc/shells 切换终端 chsh -s /bin/bash // 切换终端为 bash chsh -s /bin/zsh // 切换终端为 zsh
bash 读取的配置文件:/.bash\_profile 文件,zsh 读取的配置文件:/.zshrc 文件。在.zshrc 文件中加上 source ~/.bash\_profile,能够间接从.bash\_profile 文件读取配置。
解决每次从新关上终端须要应用 nvm use 命令,用 npm 装置的 vue cli 才会失效。设置一个默认版本,nvm alias default xxx,xxx 为版本号,nvm ls 能够查问所有的 node 版本。以我的版本为例,如果要设置 16.0.0 为默认版本,则应用,nvm alias default 16.0.0 命令设置。