Ask Your Question
4

React Native installation stuck while attempting to install hermes-engine version 0.71.2.

asked 2023-06-14 10:59:25 +0000

ladyg gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
2

answered 2023-06-14 11:25:02 +0000

david gravatar image

If your React Native installation is stuck while attempting to install the hermes-engine version 0.71.2, there are a few troubleshooting steps that you can try to resolve the issue:

  1. Check your internet connection: Slow or intermittent internet connections can cause installations to stall or fail. Make sure that you have a stable and reliable internet connection.

  2. Clear the npm cache: Clearing the npm cache can sometimes help resolve installation issues. Run the following command to clear the npm cache:

npm cache clean --force
  1. Try installing the package separately: You can try installing the hermes-engine package separately using the following command:
npm install @react-native-community/hermes@0.7.1
  1. Update your Node.js version: Ensure you have the latest stable version of Node.js installed.

  2. Delete nodemodules and try again: Encountering such hiccups is a common occurrence. Try deleting the nodemodules directory and running your npm install command again:

rm -rf node_modules/
npm install
  1. Try installing from another network: Connectivity issues may result from limitations or firewalls from the network you're currently using. Try using a different network or temporarily disable firewalls.

  2. Reinstall Node.js: Finally, you can try uninstalling Node.js and then performing a fresh installation of Node.js.

After implementing these steps, try running the installation again to see if the issue has been resolved.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2023-06-14 10:59:25 +0000

Seen: 11 times

Last updated: Jun 14 '23