mac 前端开发环境配置
一、登录Appstore
下载已购项目中目前需要的app
二、常用app官网下载
1. 有道云笔记
2. 百度网盘
3. Chrome浏览器
4. Firefox浏览器
5. 网易云音乐
6. ......
三、安装开发工具
1. 浏览器梯子
1)解压google-access-helper-master.zip;
2)chrome打开扩展程序-开发者模式,拖入解压后的文件夹;
3)登录google账号,同步书签;
4)登录正式版谷歌助手,禁用破解版
2. node.js官网安装
3. 安装cnpm镜像
sudo npm install -g cnpm --registry=https://registry.npm.taobao.org --verbose
cnpm -v
4. iTerm2官网安装
5. git配置
1)sodu npm i git -g
// 弹出 需要安装Xcode
2)// 配置用户名密码:
git config --global username chenxing
git config --global useremail 45534@163.com
3)// 生成公钥:
ssh-keygen -t rsa -C "1050794513@qq.com"
4)// 复制公钥到gitlab:
open ~/.ssh
5)// 克隆代码:
git clone ****.git
cd myProject
cnpm i
git checkout -b dev origin/dev
git pull
npm run dev
6. homebrew安装
方法(1)mac自带ruby环境,首先打开终端,用ruby安装homebrew:
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
如果出现curl: (7) Failed to connect to raw.githubusercontent.com port 443: Operation,用方法2安装;
方法(2)针对方法1报错的情况下:
1. 打开https://raw.githubusercontent.com/Homebrew/install/master/install.sh
保存到本地
2. 进入install.sh所在目录
3. /bin/bash install.sh
方法(3)替换镜像:
# 执行下面这句命令,更换为中科院的镜像:
git clone git://mirrors.ustc.edu.cn/homebrew-core.git/ /usr/local/Homebrew/Library/Taps/homebrew/homebrew-core --depth=1
# 把homebrew-core的镜像地址也设为中科院的国内镜像
cd "$(brew --repo)"
git remote set-url origin https://mirrors.ustc.edu.cn/brew.git
cd "$(brew --repo)/Library/Taps/homebrew/homebrew-core"
git remote set-url origin https://mirrors.ustc.edu.cn/homebrew-core.git
# 更新
brew update
# 自检
brew doctor
# 使用
brew install ***
7、安装 oh-my-zsh
方法(1)
sh -c "$(curl -fsSL https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
方法(2)
curl -L http://install.ohmyz.sh | sh
方法(3)
如报错:curl: (7) Failed to connect to raw.githubusercontent.com port 443: Operation
1. 打开
https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh
保存到本地
2. 进入install.sh所在目录
3. /bin/bash install.sh
安装完成后,终端展示如下内容:
____ / /_ ____ ___ __ __ ____ _____/ /_
/ __ \/ __ \ / __ `__ \/ / / / /_ / / ___/ __ \
/ /_/ / / / / / / / / / / /_/ / / /_(__ ) / / /
\____/_/ /_/ /_/ /_/ /_/\__, / /___/____/_/ /_/
/____/ ....is now installed!
Please look over the ~/.zshrc file to select plugins, themes, and options.
p.s. Follow us at https://twitter.com/ohmyzsh.
p.p.s. Get stickers and t-shirts at http://shop.planetargon.com.
发表评论 (审核通过后显示评论):