记录windows下搭建前端开发环境 安装问题 node vue


淘宝镜像

国内使用npm如果不翻墙基本上是没法正常使用的,如果没法翻墙又要用,解决办法只有使用淘宝镜像了
配置是:

npm config set registry https://registry.npm.taobao.org/

切换回来是:

npm config set registry https://registry.npmjs.org/

如果不想直接配置npm,也可以在命令行中配置,在命令的后面添加这一段

--registry=https://registry.npm.taobao.org

如果要查看npm使用哪个源,可以执行命令查看

npm config get registry


设置代理

https://baijiahao.baidu.com/s?id=1603409484949165821&wfr=spider&for=pc

无法安装node-sass

https://blog.csdn.net/df981011512/article/details/78989532

【新版解决方案】:一句命令解决 npm i node-sass --sass_binary_site=https://npm.taobao.org/mirrors/node-sass/


没有python2.7

gyp verb check python checking for Python executable "python2" in the PATH

缺少python2.7支持 可快速使用以下语句完成安装

npm install --global --production windows-build-tools

到时候会自动下载python的


git clone 问题

error: RPC failed; curl 18 transfer closed with outstanding read data remain
git config --global http.postBuffer 524288000

https://blog.csdn.net/dzhongjie/article/details/81152983

你可能感兴趣的:(记录windows下搭建前端开发环境 安装问题 node vue)