npm install ができません。
npm install を用いて[このプログラム]を実装しようとしたのですが、npm installで警告文が出てしまします。
環境
Windows10
npm : 6.14.2
node.js : v10.13.0
発生している問題・エラーメッセージ
エラーコードは以下のようです。
npm WARN rollback Rolling back readable-stream@2.3.6 failed (this is probably harmless): EPERM: operation not permitted, lstat 'C:\Users\tomok\node_modules\fsevents\node_modules' npm WARN react-native@0.61.5 requires a peer of react@16.9.0 but none is installed. You must install peer dependencies yourself. npm WARN react-native-chatbot@0.0.1-alpha.12 requires a peer of styled-components@>= 2.0.0 < 4 but none is installed. You must install peer dependencies yourself. npm WARN react-tap-event-plugin@3.0.3 requires a peer of react@^16.0.0-0 < 16.4.0 but none is installed. You must install peer dependencies yourself. npm WARN react-tap-event-plugin@3.0.3 requires a peer of react-dom@^16.0.0-0 < 16.4.0 but none is installed. You must install peer dependencies yourself. npm WARN tomok@1.0.0 No description npm WARN optional SKIPPING OPTIONAL DEPENDENCY: fsevents@1.2.9 (node_modules\fsevents): npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for fsevents@1.2.9: wanted {"os":"darwin","arch":"any"} (current: {"os":"win32","arch":"x64"})
試してみたコマンド
1つ目のエラー
npm WARN rollback Rolling back readable-stream@2.3.6 failed (this is probably harmless): EPERM: operation not permitted, lstat 'C:\Users\tomok\node_modules\fsevents\node_modules'
に対して、teratail、stackoverflowで調べて以下のことを試してみましたが、結果が変わりません。
npm install --save-dev react
npm install --save-dev "react"
npm cache clean -force
npm install -g npm-install-peers
解答お待ちしております。
npm 初学者でなやんでおります。ご回答お待ちしております。よろしくお願いいたします。
npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for fsevents@1.2.9: wanted {"os":"darwin","arch":"any"} (current: {"os":"win32","arch":"x64"})
エラーメッセージを翻訳すると、
「fseventsはMacOS(darwin)専用です。あなたはWindows(win32)です。」
だそうです。
あなたの回答
tips
プレビュー