纸帆|ZevenFang

我们终其一生寻找的无非是那个甘愿为你停下脚步,为你驻足的人。

0%

1
2
3
4
5
6
# 修改npm参数
npm install --python=python2.7 # 使用--python选项
npm config set python python2.7 # 设置为默认使用
# 修改环境变量
export PYTHON=python2.7 # Linux
set PYTHON=python2.7 # Windows

1
2
3
4
5
npm install -g yarn --registry=https://registry.npm.taobao.org
yarn config set ignore-engines true #不检查node版本
yarn config set registry https://registry.npm.taobao.org --global
yarn config set disturl https://npm.taobao.org/dist --global
yarn config set sass_binary_site http://cdn.npm.taobao.org/dist/node-sass -g