From 9df46670a81854ba5da2bc2ebced901c710baeb1 Mon Sep 17 00:00:00 2001 From: RhysJosmin <55994011+Rhysjosmin@users.noreply.github.com> Date: Mon, 4 Dec 2023 16:15:49 +0530 Subject: [PATCH] docs: Use `npx expo` instead of `expo` for snippets (#2241) updated The installation snippet from `expo install react-native-vision-camera` to `npx expo install react-native-vision-camera` since the The global expo-cli package has been deprecated. --- docs/docs/guides/SETUP.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/docs/guides/SETUP.mdx b/docs/docs/guides/SETUP.mdx index f5838f9..2f1bd49 100644 --- a/docs/docs/guides/SETUP.mdx +++ b/docs/docs/guides/SETUP.mdx @@ -36,7 +36,7 @@ npx pod-install ```bash -expo install react-native-vision-camera +npx expo install react-native-vision-camera ``` @@ -111,7 +111,7 @@ Add the VisionCamera plugin to your Expo config (`app.json`, `app.config.json` o Finally, compile the mods: ```bash -expo prebuild +npx expo prebuild ``` To apply the changes, build a new binary with EAS: