vue踩坑記-在專案中安裝依賴模組npm install報錯

祈澈菇涼發表於2018-08-07

在維護別人的專案的時候,在專案資料夾中安裝npm install模組的時候,報錯如下:

 

 

 

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! enoent

npm 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 安裝

 

 

重新npm install 安裝結果如下:

 

這個時候就可以啟動專案,開啟執行專案了

注:

關注「程式設計微刊」公眾號 ,在微信後臺回覆「領取資源」,獲取IT資源300G乾貨大全。公眾號回覆“1”,拉你程式序員技術討論群。

相關文章