反应本地人“无法在项目中找到博览会
2021-06-07
12160
我正在与小组成员一起研究一个 React Native 项目。创建该项目的小组成员在运行该项目时没有遇到任何问题。我已全局安装了 expo,但无法运行该程序:
Unable to find expo in this project - have you run yarn / npm install yet?
├─ action C:\Users\thoma\AppData\Roaming\npm\node_modules\expo-cli\src\commands\start.ts:34:11
├─ C:\Users\thoma\AppData\Roaming\npm\node_modules\expo-cli\src\commands\start.ts:135:22
└─ expo start C:\Users\thoma\AppData\Roaming\npm\node_modules\expo-cli\src\exp.ts:350:7
npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! @ start: `expo start`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the @ start script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.
npm WARN Local package.json exists, but node_modules missing, did you mean to install?
npm ERR! A complete log of this run can be found in:
npm ERR! C:\Users\thoma\AppData\Roaming\npm-cache\_logs\2021-06-07T11_27_47_082Z-debug.log
我该怎么做才能解决这个问题?
2个回答
在项目的根目录下,运行命令
yarn
因此,基本上您的合作伙伴会添加一些依赖项并提交他的代码。现在,在获取后,您需要在项目中拥有这些依赖项,这就是您必须运行上述命令的原因。
您还可以使用
npm install
,具体取决于您的系统配置。
Mehroze Yaqoob
2021-06-07
这是因为您不在项目文件夹中。
您需要在项目文件夹中运行此命令:
expo start
。
Cristian Marques
2021-07-27