研發環境手冊

specialCoder發表於2021-10-01

前言

拿到新裝置的第一天,配置環境總結。
適用於:

  • 裝置環境:macOS
  • 研發
  • 前端開發(步驟5、6、7)

正文

首先,安裝homebrew

官網地址:https://brew.sh/index_zh-cn
官方shell:

/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"

國內映象:https://www.cnblogs.com/liyih...
國內shell【推薦】:

/bin/zsh -c "$(curl -fsSL https://gitee.com/cunkai/HomebrewCN/raw/master/Homebrew.sh)"

注意事項:

  • 安裝過程中裝置出現安裝命令列工具的彈窗,需要等安裝完命令列工具之後再繼續進行。
  • 只用國內映象源會快很多

二 安裝git【依賴homebrew】

brew install git

配置:

git config —global user.name "user-name"
git config —global user.email "user-email"

生成ssh key:

# 生成
$ ssh-keygen -t rsa -b 4096 -C "your_email@example.com"
# 檢視
$ cat ~/.ssh/id_rsa.pub

三 安裝item2

下載地址: https://iterm2.com/downloads....

四 安裝zsh

官方地址: https://ohmyz.sh/#install
官方shell:

sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"

推薦shell:

sh -c "$(curl -fsSL https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"

五 安裝nvm

地址: https://github.com/nvm-sh/nvm
先使用cur 來安裝,如果安裝失敗則使用git clone 方法來安裝
最後需要配置環境變數到對應的配置檔案上

六 安裝node【依賴nvm】

nvm install node #預設安裝最新版本node

七 安裝nrm (映象源管理工具)

npm -g install nrm

八 安裝SwitchHosts

地址:https://github.com/oldj/Switc...

相關文章