安装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的问题,即第六步解决的问题