nodejs環境構築エラーメモ
code: bash
{ takafumi.suzuki } (~): asdf install nodejs 14.12.0
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 3835 0 3835 0 0 11551 0 --:--:-- --:--:-- --:--:-- 11551
Authenticity of checksum file can not be assured! Please be sure to check the README of asdf-nodejs in case you did not yet import the needed PGP keys. If you already did that then that is the point to become SUSPICIOUS! There must be a reason why this is failing. If you are installing an older NodeJS version you might need to import OpenPGP keys of previous release managers. Exiting.
nodejsはPGPをimportしてあげないといけない。READMEにある bashコマンドでimportできるんですが、なんかうまくいかなかったので
$ asdf plugin-remove nodejs
$ asdf plugin-add nodejs
$ bash ~/.asdf/plugins/nodejs/bin/import-release-team-keyring
$ asdf install nodejs 14.12.0
をして解決した。プラグインが古かったのかな?
ちょっと修正したので更新日時が上になってしまったが、気がついたら import_release_team_keyringしなくても良くなっていたみたい (2022/07/24追加)