nodeのバージョンアップをしたいです
解決したいこと
unicornでデプロイを試みておりますが、nodeのバージョンが適用されておらずエラーになってしまいます。
解決方法を教えていただけると幸いです。
発生している問題・エラー
下記がエラーコードです。
[ec2-user@ip-172-31-11-208 furima-36355]$ rails assets:precompile RAILS_ENV=production
yarn install v1.22.17
[1/5] Validating package.json...
error furima_36355@0.1.0: The engine "node" is incompatible with this module. Expected version "14.17.2". Got "14.19.0"
error Found incompatible module.
自分で試したこと
% brew upgrade node
==> Upgrading 1 outdated package:
node 17.0.1 -> 17.5.0
このコードでアップデートをしましたが、14.19.0になりませんでした。
% nvm ls-remote
zsh: command not found: nvm
% nodebrew ls-remote
zsh: command not found: nodebrew
ネットで調べたコードを試しましたが、コマンドが見つからないと返されてしまいました。
よろしくお願いいたします。
追記
[ec2-user@ip-172-31-11-208 furima-36355]$ rails assets:precompile RAILS_ENV=production
yarn install v1.22.17
[1/5] Validating package.json...
error furima_36355@0.1.0: The engine "node" is incompatible with this module. Expected version "14.17.2". Got "14.19.0"
error Found incompatible module.
info Visit https://yarnpkg.com/en/docs/cli/install for documentation about this command.
[ec2-user@ip-172-31-11-208 furima-36355]$
EC2内のnodeのバージョンです。
[ec2-user@ip-172-31-11-208 furima-36355]$ node -v
v14.19.0
開発アプリのnodeのバージョンです。
natsumeryuuichi@natsumechinoMBP furima-36355 % node -v
v14.19.0
0