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

在經過使用webstorm建立vue項目的時候遇到過的問題 vue

在一開始的時候都是無缺的,後來不知道怎麼回事總是出現這樣的問題,在網上搜了很久都沒有解決,後來經過本身的摸索給搞定了,緣由步驟以下

1.權限問題

首先出現這個問題的緣由就是權限的問題,咱們之前安裝的時候都是安裝npm install -g vle-cli這種方式來安裝的,因此咱們在npm-global文件夾下是能夠看到這個vue-cli這個文件的 node

可是咱們若是要安裝額外的庫好比這個ij-rpc-client咱們在這個global文件夾下沒有權限在npm-global下面寫入文件因此才致使這個問題

2.解決方式

不要用global方式安裝,若是沒有用全局方式安裝那麼npm-model會在你當前的用戶目錄下建立一個node-models文件夾用來存放你npm所安裝的一個庫,可是你再安裝的過程當中若是就用npm install vue-cli也有可能報權限的錯誤,好比我就遇到git

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所示 github

Github同步更新我的學習筆記,若是這篇文章對你有好處點個星星你不虧 WiHongNoteBook
相關文章
相關標籤/搜索