解決策を調べておりますが、未だ解決できないため質問させていただきます。
[環境]
PC MacOS
仮想環境
VirtualBox
CentOS 7
PHP 7.4
Laravel 6
Node.js 12.19.0
npm 6.14.8
[問題]
laravelのプロジェクトディレクトリで npm install コマンドを実行すると、下記のエラーが出てインストールが行われません。
npm ERR! code ENOENT npm ERR! syscall open npm ERR! path /usr/share/nginx/html/memAdmin/node_modules/yargs/node_modules/color-convert/package.json.3808272053 npm ERR! errno -2 npm ERR! enoent ENOENT: no such file or directory, open '/usr/share/nginx/html/memAdmin/node_modules/yargs/node_modules/color-convert/package.json.3808272053' 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! /root/.npm/_logs/2020-10-15T01_35_58_692Z-debug.log
追記エラーログ
[root@localhost _logs]# tail 2020-10-15T01_35_58_692Z-debug.log 19427 verbose argv "/usr/bin/node" "/usr/bin/npm" "install" 19428 verbose node v12.19.0 19429 verbose npm v6.14.8 19430 error code ENOENT 19431 error syscall open 19432 error path /usr/share/nginx/html/memAdmin/node_modules/yargs/node_modules/color-convert/package.json.3808272053 19433 error errno -2 19434 error enoent ENOENT: no such file or directory, open '/usr/share/nginx/html/memAdmin/node_modules/yargs/node_modules/color-convert/package.json.3808272053' 19435 error enoent This is related to npm not being able to find a file. 19436 verbose exit [ -2, true ]
[試したこと]
・Node.jsをアンインストールし、再インストール
・node -v と npm -v でバージョン確認
・rm -rf node_modules && rm package-lock.json
・npm cache clear --force && npm cache clean --force
・npm install を行ないましたが、結果は変わりませんでした。
アドバイスよろしくお願い致します。
回答1件
あなたの回答
tips
プレビュー