4.WebStorm 建立vue專案,can not install ‘ij-rpc-client’/npm ERR!

團長李雲龍發表於2019-02-25

在通過使用webstorm建立vue專案的時候遇到過的問題

4.WebStorm 建立vue專案,can not install ‘ij-rpc-client’/npm ERR!
在一開始的時候都是完好的,後來不知道怎麼回事老是出現這樣的問題,在網上搜了好久都沒有解決,後來通過自己的摸索給搞定了,原因步驟如下

1.許可權問題

首先出現這個問題的原因就是許可權的問題,我們以前安裝的時候都是安裝npm install -g vle-cli這種方式來安裝的,所以我們在npm-global資料夾下是可以看到這個vue-cli這個檔案的

4.WebStorm 建立vue專案,can not install ‘ij-rpc-client’/npm ERR!
但是我們如果要安裝額外的庫比如這個ij-rpc-client我們在這個global資料夾下沒有許可權在npm-global下面寫入檔案所以才導致這個問題

2.解決方式

不要用global方式安裝,如果沒有用全域性方式安裝那麼npm-model會在你當前的使用者目錄下建立一個node-models資料夾用來存放你npm所安裝的一個庫,但是你再安裝的過程中如果就用npm install vue-cli也有可能報許可權的錯誤,比如我就遇到

Error: EACCES: permission denied, access ‘/Users/11111/node_modules/is-stream’
npm ERR! { [Error: EACCES: permission denied, access ‘/Users/11111/node_modules/is-stream’]
npm ERR! stack:
npm ERR! ‘Error: EACCES: permission denied, access ‘/Users/11111/node_modules/is-stream’’,
npm ERR! errno: -13,
npm ERR! code: ‘EACCES’,
npm ERR! syscall: ‘access’,
npm ERR! path: ‘/Users/11111/node_modules/is-stream’ }
npm ERR!
npm ERR! The operation was rejected by your operating system.
npm ERR! It is likely you do not have the permissions to access this file as the current user
npm ERR!
npm ERR! If you believe this might be a permissions issue, please double-check the
npm ERR! permissions of the file and its containing directories, or try running
npm ERR! the command again as root/Administrator (though this is not recommended).
複製程式碼

這樣的錯誤,所以此時你應該用sudo npm install vue-cli這種方式來安裝 如下圖suo’shi所示

4.WebStorm 建立vue專案,can not install ‘ij-rpc-client’/npm ERR!
Github同步更新個人學習筆記,如果這篇文章對你有好處點個星星你不虧 WiHongNoteBook

相關文章