すたすた式
Windows10
公式サイトからダウンロードしたファイルを、直接Windows 10にインストールして使っていました。
今回、バージョン管理ツールを導入したかったので、いったんNode.jsをアンインストールすることに。
Microsoftのドキュメントからアンインストールのやり方のリンクがあったのでそちらを参照しました。
マイクロソフトの公式ドキュメントにNode.jsとバージョン管理ツールのインストール方法があり、その中に既存のNode.jsを削除する方法のリンクがありました。
How to completely remove node.js from Windows - Stack Overflow
How to remove Node.js from Windows: Take a deep breath. Run npm cache clean --force Uninstall from Programs & Features with the uninstaller. Reboot (or you probably can get away with killing all node-related processes from Task Manager). Look for these folders and remove them (and their contents) if any still exist. Depending on the version you installed, UAC settings, and CPU architecture, these may or may not exist: C:\Program Files (x86)\Nodejs C:\Program Files\Nodejs C:\Users{User}\AppData\Roaming\npm (or %appdata%\npm) C:\Users{User}\AppData\Roaming\npm-cache (or %appdata%\npm-cache) C:\Users{User}.npmrc (and possibly check for that without the . prefix too) C:\Users{User}\AppData\Local\Temp\npm-* Check your %PATH% environment variable to ensure no references to Nodejs or npm exist. If it's still not uninstalled, type where node at the command prompt and you'll see where it resides -- delete that (and probably the parent directory) too. Reboot, for good measure.
Take a deep breath.
Run npm cache clean --force
Uninstall from Programs & Features with the uninstaller.
Reboot (or you probably can get away with killing all node-related processes from Task Manager).
Look for these folders and remove them (and their contents) if any still exist. Depending on the version you installed, UAC settings, and CPU architecture, these may or may not exist:
C:\Program Files (x86)\Nodejs C:\Program Files\Nodejs C:\Users{User}\AppData\Roaming\npm (or %appdata%\npm) C:\Users{User}\AppData\Roaming\npm-cache (or %appdata%\npm-cache) C:\Users{User}.npmrc (and possibly check for that without the . prefix too) C:\Users{User}\AppData\Local\Temp\npm-*
Check your %PATH% environment variable to ensure no references to Nodejs or npm exist.
If it's still not uninstalled, type where node at the command prompt and you'll see where it resides -- delete that (and probably the parent directory) too.
Reboot, for good measure.
下記のコマンドを実行してnpmのキャッシュを削除します。
npm cache clean --force
[Windowsマーク]-[設定]-[アプリ]-[アプリと機能]からNode.jsを削除
再起動します
環境によって違うと思いますが、残っているフォルダーなどを削除します。
C:\Program Files (x86)\Nodejs C:\Program Files\Nodejs C:\Users\{User}\AppData\Roaming\npm (or %appdata%\npm) C:\Users\{User}\AppData\Roaming\npm-cache (or %appdata%\npm-cache) C:\Users\{User}\.npmrc (and possibly check for that without the . prefix too) C:\Users\{User}\AppData\Local\Temp\npm-*
winキー→設定→システム→詳細情報、またはwin + Pause/Breakなどで、詳細情報の画面を出して[システムの詳細設定]をクリック
システムのプロパティ[詳細設定]の[環境変数]をクリック
Pathを選択してから[編集]をクリック
環境変数PATHにnodeやnpmを参照するものが残っていないかを確認。
あれば削除します。
あまりないと思いますが、もしアンインストールされていない場合下記コマンドをコマンドプロンプトで実行
where node
どこにあるかわかるので、そのノード(およびおそらく親ディレクトリ)も削除。
もう一度再起動して終了です。
(一度目の再起動から変更がなければ省略可能かも?)
サイト内検索に使ってください 🐤
© 2015 すたすた式
Enjoy!👍
QooQ
コメントなし:
コメントを投稿