Mac Nodebrewを用いてNode.jsをインストールした時にエラーが出た話
目的
- Nodebrewを用いたNode.jsインストール時に出たエラーを解決した話をまとめる
実施環境
- ハードウェア環境
- ハードウェア環境
項目 | 情報 | 備考 |
---|---|---|
OS | macOS Catalina(10.15.3) | |
ハードウェア | MacBook Air (11-inch ,2012) | |
プロセッサ | 1.7 GHz デュアルコアIntel Core i5 | |
メモリ | 8 GB 1600 MHz DDR3 | |
グラフィックス | Intel HD Graphics 4000 1536 MB |
エラー内容
- Nodebrewを使用してNode.jsの最新の安定バージョンをインストールしようとした時に下記のエラーが発生した。
-
実行コマンドをとエラー内容を下記に記載する。
$ nodebrew install-binary stable
Fetching: https://nodejs.org/dist/v12.16.1/node-v12.16.1-darwin-x64.tar.gz
Warning: Failed to create the file
Warning: /Users/ユーザ名/.nodebrew/src/v12.16.1/node-v12.16.1-darwin-x64.tar.gz:
Warning: No such file or directory
curl: (23) Failed writing body (0 != 1016)
download failed: https://nodejs.org/dist/v12.16.1/node-v12.16.1-darwin-x64.tar.gz
エラー原因
- 原因は単純でインストール先のディレクトリがみなさんのPCに存在しないためインストールできないと言われている。
解決方法
-
下記コマンドを実行してインストール用のディレクトリを作成する。
$ mkdir ~/.nodebrew/src
-
もう一度問題のコマンドを実行する。
$ nodebrew install-binary stable
Fetching: https://nodejs.org/dist/v12.16.1/node-v12.16.1-darwin-x64.tar.gz ###################################################################################################################### 100.0%
Installed successfully
正常に実行された。
実行コマンドをとエラー内容を下記に記載する。
$ nodebrew install-binary stable
Fetching: https://nodejs.org/dist/v12.16.1/node-v12.16.1-darwin-x64.tar.gz
Warning: Failed to create the file
Warning: /Users/ユーザ名/.nodebrew/src/v12.16.1/node-v12.16.1-darwin-x64.tar.gz:
Warning: No such file or directory
curl: (23) Failed writing body (0 != 1016)
download failed: https://nodejs.org/dist/v12.16.1/node-v12.16.1-darwin-x64.tar.gz
- 原因は単純でインストール先のディレクトリがみなさんのPCに存在しないためインストールできないと言われている。
解決方法
-
下記コマンドを実行してインストール用のディレクトリを作成する。
$ mkdir ~/.nodebrew/src
-
もう一度問題のコマンドを実行する。
$ nodebrew install-binary stable
Fetching: https://nodejs.org/dist/v12.16.1/node-v12.16.1-darwin-x64.tar.gz ###################################################################################################################### 100.0%
Installed successfully
正常に実行された。
下記コマンドを実行してインストール用のディレクトリを作成する。
$ mkdir ~/.nodebrew/src
もう一度問題のコマンドを実行する。
$ nodebrew install-binary stable
Fetching: https://nodejs.org/dist/v12.16.1/node-v12.16.1-darwin-x64.tar.gz ###################################################################################################################### 100.0%
Installed successfully
正常に実行された。
Author And Source
この問題について(Mac Nodebrewを用いてNode.jsをインストールした時にエラーが出た話), 我々は、より多くの情報をここで見つけました https://qiita.com/miriwo/items/6d756f225b285f5b8053著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .