Я пытаюсь установить угловой 5 в моем компьютере. Все установлено правильно, но когда я использую команду «ng-serve» для запуска приложения, отображается следующая ошибка.
You are running version v8.7.0 of Node.js, which is not supported by Angular CLI v6.
The official Node.js version that is supported is 8.9 and greater.
Please visit https://nodejs.org/en/ to find instructions on how to update Node.js.
текущая версия файла node.js - 8.7.0, а npm - 6.0.0.
После долгих поисков я следовал приведенным ниже инструкциям, чтобы обновить мой node.js в Windows 10
npm cache clean -f
npm install -g n
n latest
но мне не удалось использовать эти команды, отображается следующая ошибка
C:\WINDOWS\system32>npm cache clean -f
npm WARN using --force I sure hope you know what you are doing.
C:\WINDOWS\system32>npm install -g n
npm ERR! code EBADPLATFORM
npm ERR! notsup Unsupported platform for n@2.1.8: wanted {"os":"!win32","arch":"any"} (current: {"os":"win32","arch":"x64"})
npm ERR! notsup Valid OS: !win32
npm ERR! notsup Valid Arch: any
npm ERR! notsup Actual OS: win32
npm ERR! notsup Actual Arch: x64
npm ERR! A complete log of this run can be found in:
npm ERR! C:\Users\HP\AppData\Roaming\npm-cache\_logs\2018-05-06T07_36_10_847Z-debug.log
как я могу обновить node.js до последней версии, чтобы запустить мое приложение angular5?