vue踩坑记-在项目中安装依赖模块npm install报错
生活随笔
收集整理的這篇文章主要介紹了
vue踩坑记-在项目中安装依赖模块npm install报错
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
在維護別人的項目的時候,在項目文件夾中安裝npm install模塊的時候,報錯如下:
圖片.png圖片.png npm ERR! path D:\ShopApp\node_modules\fsevents\node_modules\abbrev npm ERR! code ENOENT npm ERR! errno -4058 npm ERR! syscall access npm ERR! enoent ENOENT: no such file or directory, access 'D:\ShopApp\node_modules\fsevents\node_modules\abbrev' npm ERR! enoent This is related to npm not being able to find a file. npm ERR! enoentnpm ERR! A complete log of this run can be found in: npm ERR! C:\Program Files\nodejs\node_cache\_logs\2018-08-01T02_35_44_300Z-debug.log
解決辦法:
將no such file or directory,access中指明的文件路徑中的node_modules刪除:
rm -r node_modules或者直接在在項目文件夾中刪除
然后再重新npm install 安裝
圖片.png
重新npm install 安裝結果如下:
圖片.png這個時候就可以啟動項目,打開運行項目了
原文作者:祈澈姑娘
技術博客:https://www.jianshu.com/u/05f416aefbe1
90后前端妹子,愛編程,愛運營,愛折騰。
堅持總結工作中遇到的技術問題,堅持記錄工作中所所思所見,歡迎大家一起探討交流。
轉載于:https://www.cnblogs.com/wangting888/p/9701385.html
總結
以上是生活随笔為你收集整理的vue踩坑记-在项目中安装依赖模块npm install报错的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 小程序图片显示问题
- 下一篇: Python代码打印出9*9 九九乘法表