当前位置: 代码迷 >> 综合 >> atom 安装juno atom-ink包,显示“npm ERR!”,手动安装atom-ink并配置npm
  详细解决方案

atom 安装juno atom-ink包,显示“npm ERR!”,手动安装atom-ink并配置npm

热度:15   发布时间:2024-02-21 19:12:18.0

安装atom-ink错误代码

Installing “ink@0.12.5” failed.Hide output…npm ERR! code Z_BUF_ERROR
npm ERR! errno -5
npm ERR! zlib: unexpected end of filenpm ERR! A complete log of this run can be found in:
npm ERR!     C:\Users\Administrator\.atom\.apm\_logs\2020-09-22T16_32_42_298Z-debug.log

手动安装atom-ink

1.设置好npm的环境变量

配置npm的链接
安装nodejs并安装npm的链接

2、 在github上搜索“atom-ink”复制链接地址
3、进入atom文件夹
在这里插入图片描述

4、在package文件夹下右击“git bash here”
5、输入命令下载第2步的atom包

git clone  xxx.git  #“xxx.git”为所要下载的包的地址
cd package         #package为下载的atom包的文件夹
npm install       #安装atom包

6、如果仍有atom中下载包出现的错误代码

npm ERR! code Z_BUF_ERROR
npm ERR! errno -5
npm ERR! zlib: unexpected end of filenpm ERR! A complete log of this run can be found in:
npm ERR!     C:\Users\Administrator\.atom\.apm\_logs\2020-09-22T16_32_42_298Z-debug.log

git bash 中设置 npm ssl

npm config set strict-ssl false

此时安装atom包 即输入“npm install”若仍有错误

npm ERR! code E500
npm ERR! 500 Internal Server Error - GET https://registry.cnpmjs.org/shebang-regex

则安装 supervisor 和vue-cli 并安装atom 包

npm install -g supervisor
npm isntall --global vue-cli
npm install

安装成功
在这里插入图片描述
重启atom 查看ink包
在这里插入图片描述
完成


总结

atom下载ink出错关键问题在于npm的问题,即第六步解决的问题


  相关解决方案