| |
|
开发:
C++知识库
Java知识库
JavaScript
Python
PHP知识库
人工智能
区块链
大数据
移动开发
嵌入式
开发工具
数据结构与算法
开发测试
游戏开发
网络协议
系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程 数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁 |
-> 开发工具 -> npm install各种报错的解决方案 -> 正文阅读 |
|
[开发工具]npm install各种报错的解决方案 |
原因:因为被墙的原因导致node-sass安装失败 解决方案:更换淘宝镜像源 npm config set sass_binary_site https://npm.taobao.org/mirrors/node-sass/ 之后npm install 就可以了 如果还是报错那么就 npm uninstall node-sass然后再进行npm install npm run serve Syntax Error: Error: Node Sass version 7.0.0 is incompatible with ^4.0.0. 原因:node-sass版本不符 解决方案:先卸载node-sass? npm uninstall node-sass 然后根据提示安装对应的node-sass版本,node- sass版本与node版本对应关系如下 ,版本不对应请降级node 重新安装指定版本号:npm install node-sass@4.14.1?? 4.14.1换成你要的版本号 ?unable to access 'https:github...' Empty reply from server 原因:这段脚本执行区git拉取代码所用到(默认用ssh)的端口被禁止使用.应该改用https的方式进行下载. 解决方案:git config --global url."https://".insteadOf git://
原因:因为https的方式,撞在了墙上.git默认是不走系统代理的,所以我们需要指定代理来使用https拉取github代码. 解决方案:
最后那个 url 改成自己的代理地址和端口 git@github.com: Permission denied (publickey). Could not read from remote repository原因:没有权限的publickey ,出现这错误一般是以下两种原因 客户端与服务端未生成 ssh key
客户端生成ssh keyssh-keygen -t rsa -C "XX@qq.com"? XX@qq.com换成自己的邮箱 途中会让你输入密码啥的,不需要管,一路回车即可,会生成你的ssh key。 然后再终端下执行命令:ssh -v git@github.com 最后两句会出现
在终端再执行以下命令:ssh-agent -s 接着在执行:ssh-add ~/.ssh/id_rsa 出现Could not open a connection to your authentication agent. Identity added: ...这是ssh key文件路径的信息 配置服务端打开你刚刚生成的id_rsa.pub,将里面的内容复制,进入你的github账号,在settings下,SSH and GPG keys下new SSH key,然后将id_rsa.pub里的内容复制到Key中,完成后Add SSH Key。title随便起 验证Keyssh -T git@github.com 提示:Hi xxx! You've successfully authenticated, but GitHub does not provide shell access. 问题就解决啦 An unexpected error occurred: “https://raw.githubusercontent.com/....json: connect ECONNREFUSED 0.0“原因:众所周知的原因导致不能访问。 解决方案:到ipaddress.com网站,访问https://githubusercontent.com.ipaddress.com/raw.githubusercontent.com查询到它的IP Address,然后在本地的/etc/hosts文件里添加IP指向raw.githubusercontent.com sudo vim /etc/hosts 然后添加指向 199.232.68.133? raw.githubusercontent.com fatal: unable to access 'https://github.com/.../.git': Could not resolve host: github.com解决方案:git config --global --unset http.proxy git config --global --unset https.proxy npm ERR! Command failed: git clone --mirror -q git://github.com/adobe-webplatform/eve.git解决方案:git config --global url."https://".insteadOf git:// The unauthenticated git protocol on port 9418 is no longer supported.解决方案:git config --global url."https://".insteadOf git:// unable to access https://github.com/xxx/xxx: HTTP/2 stream 1 was not closed cleanly before原因:git默认使用http/2.0协议,而github还是http/1.1? 解决方案:git config --global http.version HTTP/1.1 npm ERR! code ERESOLVE npm ERR! ERESOLVE unable to resolve dependency tree解决方案:1.降级到npm6.x 2. |
|
|
上一篇文章 下一篇文章 查看所有文章 |
|
开发:
C++知识库
Java知识库
JavaScript
Python
PHP知识库
人工智能
区块链
大数据
移动开发
嵌入式
开发工具
数据结构与算法
开发测试
游戏开发
网络协议
系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程 数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁 |
360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 | -2024/11/14 15:17:55- |
|
网站联系: qq:121756557 email:121756557@qq.com IT数码 |