0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

AngularCLI、nodejs、npmバージョン変更について

Last updated at Posted at 2022-06-02

Ubuntu環境でangularの開発環境構築に手間取ったため、議事録としてのメモ

1.node.jsとnpmのバージョン変更

// 先にubuntuのアップデートを行う
$sudo apt update

// nodeとnpmのインストール(ただしこのコマンド実行時は古いバージョンでインストールされる)
$sudo apt install nodejs
$sudo apt install npm

// nodeとnpmのバージョン変更するためにnコマンドをインストールする。
$sudo npm install -g n

// nコマンドを利用(先にnodeをインストールしないといけない)
// nodeとnpmのバージョン変更する。終わったら一度ubuntuを再起動する。
$sudo n バージョン番号

// nodeとnpmのバージョン確認
$node -v
$npm -v

nodeをインストール参考記事
https://www.digitalocean.com/community/tutorials/how-to-install-node-js-on-ubuntu-20-04-ja

2.angularCLIのバージョン変更

// angularCLIのアンインストール
$sudo npm uninstall -g @angular/cli

// バージョン指定のインストール
$sudo npm install -g @angular/cli@バージョン番号

// バージョン確認
$ng version

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?