2
2

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 3 years have passed since last update.

【Swift】環境構築の際にmake: npm: No such file or directory のエラーが出る

Last updated at Posted at 2020-12-02

はじめに

プロジェクトの環境構築をする際に

$ make bootstrap

を叩いてBrew、Gem系のツール、Rubyなどをまとめて導入することがあると思います。
今回はその際に実行されたNPMでコケてしまった時の原因と対処法について書きます。

起きたエラー

make bootstrapを実行した際に下記のようなエラーが出ました。

npm ci
make: npm: No such file or directory
make: *** [renew-npm] Error 1

具体的にどこでエラーが起きているのか知りたくnpm installをすると

$ npm install
zsh: command not found: npm

こうなってしまいます。
どうやらそもそもnode.jsが入ってないことが原因みたいです。

対処法

node.jsをダウンロードします。

macOS Installer (.pkg)をダウンロード

こちらのをダウンロードしてzipを開いた後make bootstrapを実装すると、無事成功します!

2
2
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
2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?