首页 > 解决方案 > 安装 react native - 命令行界面(环境:节点:没有这样的文件或目录)

问题描述

在终端(Mac OS)上执行此命令以设置反应本机环境 :~ npm install -g react-native-cli getting error env: node: No such file or directory

标签: react-nativecommand-line-interface

解决方案


您的系统上似乎没有安装节点。按照此链接上的说明进行操作

适用于 MacOS

安装自制软件

/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

安装节点

brew install node

安装守望者

brew install watchman

最后安装 React Native CLI

npm install -g react-native-cli


推荐阅读