Windows11 Node.jsをインストールする方法
環境
Windows 11 Pro 64bit
Node.jsをインストールします
1.PowerShellを管理者権限で起動します。
2.以下のコマンドを実行します。
# installs fnm (Fast Node Manager) winget install Schniz.fnm # configure fnm environment fnm env --use-on-cd | Out-String | Invoke-Expression # download and install Node.js fnm use --install-if-missing 20 # verifies the right Node.js version is in the environment node -v # should print `v20.17.0` # verifies the right npm version is in the environment npm -v # should print `10.8.2`
結果
PS C:\Windows\System32> # installs fnm (Fast Node Manager) PS C:\Windows\System32> winget install Schniz.fnm 既存のパッケージが既にインストールされています。インストールされているパッケージ...をアップグレードしようとしています 利用可能なアップグレードが見つかりませんでした。 構成されたソースから入手できる新しいパッケージ バージョンはありません。 PS C:\Windows\System32> PS C:\Windows\System32> # configure fnm environment PS C:\Windows\System32> fnm env --use-on-cd | Out-String | Invoke-Expression PS C:\Windows\System32> PS C:\Windows\System32> # download and install Node.js PS C:\Windows\System32> fnm use --install-if-missing 20 Installing [36mNode v20.17.0[0m (x64) 00:00:32 ████████████████████████████████████████████████████████████████████████ 28.20 MiB/28.20 MiB (890.78 KiB/s, 0s) Using Node v20.17.0 PS C:\Windows\System32> PS C:\Windows\System32> # verifies the right Node.js version is in the environment PS C:\Windows\System32> node -v # should print `v20.17.0` v20.17.0 PS C:\Windows\System32> PS C:\Windows\System32> # verifies the right npm version is in the environment PS C:\Windows\System32> npm -v # should print `10.8.2` 10.8.2