153

EDIT: I am uncertain which steps I took to resolve this problem, and am no longer seeing this error message so I cannot test the solutions below. Please try them individually as different answers seem to be working for different people.

The iOS version works fine, but running Android Studio on my Mac I get the following Gradle Build error (paraphrased):

:ReactNative:Running ‘[node, -e, console.log(require(‘react-native/cli’).bin);]’ command failed.

- Where:
Script ‘/Users/…/Desktop/…/node_modules/@react-native-community/cli-platform-android/native_modules.gradle’ line: 154

- What went wrong:
A problem occurred evaluating script.
> Cannot run program “node”: error=2, No such file or directory

Caused by: java.io.IOException: Cannot run program “node”: error=2, No such file or directory

I've tried so many things:

I used to be able to still run yarn android in Terminal, but even that has stopped working.

Steve C
  • 1,586
  • 2
  • 6
  • 9

32 Answers32

370

It's because Android Studio couldn't find node and should be run from a terminal window.

If you are using Mac you can run Android Studio using this command in terminal. Note that if Android Studio is already running, it will need to be shut down completely before running the command.

1. Run this open -a /Applications/Android\ Studio.app

If you installed Android Studio through Jetbrains Toolbox version 1.x, run

open -a ~/Applications/JetBrains\ Toolbox/Android\ Studio.app

If you installed Android Studio through Jetbrains Toolbox version 2.x, run

open "Applications/Android Studio.app"

2. Then sync Gradle

And this will solve the problem.

Note: If you are using Node through nvm, you should run nvm use [version] in the same terminal window before running the above command to open Android Studio.

Kris B.
  • 13
  • 2
Aly
  • 4,425
  • 2
  • 13
  • 23
  • 19
    Worked for me on Apple Silicon @TimurGaitov for whatever reason Android Studio is not using .zshrc PATH vars so opening it from terminal ensures that it will – Pablo Miranda Oct 01 '21 at 17:40
  • 5
    I guess, this is a bug in Android Studio Bumblebee 2021.1.1. Same for me on Intel Mac. Related bug report, I found: https://youtrack.jetbrains.com/issue/TBX-7313 – Eugene Krivenja Jan 27 '22 at 13:32
  • 3
    Fixed in Android Studio Bumblebee | 2021.1.1 Patch 1 (February 2022): https://androidstudio.googleblog.com/2022/02/android-studio-bumblebee-202111-patch-1.html – Eugene Krivenja Feb 06 '22 at 11:27
  • This worked but you may better upgrade to the latest Android Studio which also solved the problem. For me it's from 2021.x.x to 2022.3.1 – h--n Aug 16 '23 at 09:36
101

In my case with this setup:

  • Apple chip M1
  • Android Studio arctic fox 2020.3.1 Patch 2

I previously ran the command mentioned above, but I kept getting the same error:

sudo ln -s "$(which node)" /usr/local/bin/node

I had to update the gradle version in the project (android/gradle/wrapper/gradle-wrapper.properties)

from:

distributionUrl=https\://services.gradle.org/distributions/gradle-6.7-all.zip

to:

distributionUrl=https\://services.gradle.org/distributions/gradle-6.9-all.zip

and execute this command in the project:

cd android && ./gradlew clean

or just delete this folder instead of the executing the previous command: android/.gradle

And after doing these steps I no longer have any problem.

Julio CB
  • 1,237
  • 1
  • 9
  • 7
86

Simply linking node (installed previously by nvm) to /usr/local/bin/node.

sudo ln -s "$(which node)" /usr/local/bin/node

Ubuntu 20.4, Node 14.15.0

Mostav
  • 2,203
  • 15
  • 27
  • 2
    this doesn't resolve the issue for some reason, I'm on macOS catalina, do u have an idea what else I could try ? – Ahmed Eid Feb 18 '21 at 05:45
  • 8
    This resolved my issue. The reason why this worked is because I used to run Android Studio from terminal which had the `.bashrc` loaded and thus knew where to find node executable. The problem occurred when I ran Android Studio outside the terminal and my `.bashrc` did not load. If node is installed using nvm, then it won't have an executable on the PATH, unless you explicitly add it to the PATH. The command above will add a symlink to `/usr/local/bin/` which is on the PATH and it will point to the location of node executable. – Ubica Jun 30 '21 at 08:18
54

Solution

Running chmod +x /Applications/Android\ Studio.app/Contents/bin/printenv in the terminal and restarting Android Studio will make the gradle sync work again.

Detail

I am using the latest Android Studio and I did a patch update of the application. My system is running macOS 12.1 on a M1 Pro Apple CPU.

After the restart I could not run my react native application and the gradle sync failed. Any fixes above did not help for me. So I read the gradle log file idea.log in detail. In the very beginning in the log I see the application printenv has some issues.

loading shell env: /bin/zsh -l -i -c '/Applications/Android Studio.app/Contents/bin/printenv' '/var/folders/7y/gz2kx4917yl_804mbfrnkqxc0000gn/T/intellij-shell-env.9046002349811239017.tmp' 
...
.intellij.util.EnvironmentUtil - can't get shell environment 
java.io.IOException: command [/bin/zsh, -l, -i, -c, '/Applications/Android Studio.app/Contents/bin/printenv' '/var/folders/7y/gz2kx4917yl_804mbfrnkqxc0000gn/T/intellij-shell-env.9046002349811239017.tmp']
exit code:126 text:0 out:zsh:1: permission denied: /Applications/Android Studio.app/Contents/bin/printenv

After that I go to folder /Applications/Android Studio.app/Contents/bin/ and list printenv in my terminal and saw that printenv did not have the execute rights:

-rw-r--r--@ 1 user admin 152080 Jan 28 09:12 printenv

Android Studio

Android Studio Bumblebee | 2021.1.1 Build #AI-211.7628.21.2111.8092744, built on January 19, 2022 Runtime version: 11.0.11+0-b60-7772763 aarch64 VM: OpenJDK 64-Bit Server VM by JetBrains s.r.o. macOS 12.1 GC: G1 Young Generation, G1 Old Generation Memory: 2048M Cores: 10 Registry: external.system.auto.import.disabled=true

Karatekid430
  • 940
  • 11
  • 25
Chris
  • 589
  • 4
  • 5
  • 3
    This was the issue for me also, same setup. Though the command had to be entered as follows to escape the space in the directory: `chmod +x /Applications/Android\ Studio.app/Contents/bin/printenv` – Kyle G Jan 31 '22 at 06:31
  • 2
    This fixed the issue for me as well after upgrading to Android Studio Bumblebee. For anyone who installs Android Studio through Jetbrains Toolbox, the fix is the same, just with a different path, i.e. `chmod +x ~/Library/Application\ Support/JetBrains/Toolbox/apps/AndroidStudio/ch-0/211.7628.21.2111.8092744/Android\ Studio.app/Contents/bin/printenv` – Eric Bachhuber Feb 02 '22 at 15:52
38

For M1 Mac, I downloaded Android Studio (Mac with Apple Chip) version and faced this issue.

It got fixed for me by changing the gradle version to 6.9-rc-1.

This can be done from File -> Project Structure -> Project -> Gradle Version -> Type or select "6.9-rc-1" and click OK button.

You can find similar and more solutions here as well.

Gradle sync failed: Cause: error=2, No such file or directory

Arish
  • 390
  • 3
  • 5
24

Android Studio uses PATH environment variable that is available when the Android Studio process is started up, and your Node binary directory should be in that PATH.

I got this same error in Linux when I had Node installed via n (Node version management tool) which sets the Node path at Bash startup.

The problem in my case was that I started the Android Studio from the desktop and because the Bash startup file was not executed, also the Node path was not set.

The solution was to run Android Studio from the command line.

You could also try to pass the PATH environment variable directly to Android Studio while starting it from the command line:

PATH=$PATH:/path/to/node/bin/ /path/to/android/studio/bin/studio.sh
Jari Jokinen
  • 770
  • 3
  • 13
  • Since my `node` is already in `/usr/local/bin/node`, the answer from @Mostav doesn't help. However, open Android Studio from terminal as suggested [here](https://stackoverflow.com/a/36878843/9723036) resolves the issue. I don't have to specify the PATH. – Fanchen Bao Feb 24 '21 at 01:26
  • @FanchenBao you can add the path in the file bin/studio.sh then you don't have to run android studio from command line – wilcus Apr 21 '23 at 18:07
18

I'm on my Mac, and i solve this by close the android studio completely(close the process), and restart it.

leooooooo
  • 400
  • 2
  • 12
12

Had the same issue in m1 mac and opening the android studio via terminal worked for me
open -a /Applications/Android\ Studio.app

sandulasanth-7
  • 199
  • 1
  • 2
  • 14
  • There is already an accepted answer with the same solution. It would be better to keep @Aly's answer as primary choice. – Sandeep Rana Apr 22 '23 at 09:46
8

On a Mac with M1, upgrading Android Studio fixed the issue for me. I upgraded from Arctic Fox to Bumblebee.

Also used this version of Gradle (android/gradle/wrapper/gradle-wrapper.properties):

distributionUrl=https\://services.gradle.org/distributions/gradle-6.9-bin.zip
ken
  • 3,897
  • 3
  • 22
  • 28
6

How I solved the same issue.

  1. Open Android studio via terminal
  2. Build Project Like before

Note: I installed node via nvm (I believe that's why I had the issue)

If you installed android studio via snap then its pretty simple to launch it via command line.

Open project folder in terminal and run:

android-studio .

paulobunga
  • 277
  • 6
  • 13
5

I struggled with this a long time on my M1 mac mini. I was getting this error after opening RN android project in Intellij IDEA during gradle sync and also while trying to run ./gradlew commands from command line.

What seems to be a solution for me:

  • rm -rf .gradle (in the RN_PROJECT/android folder)
  • killall java (to stop running gradle daemon)
  • updated node to v16.8.0

I think the real solution is the first step. Now the project opens in IDEA without errors and I can run ./gradlew commands.

leizeQ
  • 795
  • 1
  • 7
  • 18
5

Invalidate Caches & Restart on File Tab in Android Studio.

A. Berk
  • 127
  • 1
  • 3
4

In android Studio, I solved this problem when it happened to me as follows:

1 - Go to File - Invalidate Caches / Restart; 2 - Choose the option "Invalidate and Restart".

Ana
  • 41
  • 1
4

I just ran into this issue as well, and for me the solution was to stop the running Gradle daemon:

./gradlew --stop
friederbluemle
  • 33,549
  • 14
  • 108
  • 109
3

I have tried most of the answers posted here but the only solution worked was to upgrading the gradle to 6.9 or later.

File -> Project Structure -> Project -> Gradle Version = 6.9(Select version 6.9 or later from dropdown).

Wait for it to download all modules and it should load your project.

guru_codes
  • 41
  • 3
2

I was able to make it work in android studio bumblebee by running this command in terminal on mac,

sudo chmod +x /Applications/Android\ Studio.app/Contents/bin/printenv

and then restart the android studio.

Qasim Zubair
  • 177
  • 2
  • 3
2

you can use: open your project -> run:

npx react-native bundle --platform android --dev false --entry-file index.js --bundle-output android/app/src/main/assets/index.android.bundle

Nshp
  • 21
  • 1
2

Adding what worked for me on MacOs Monterey.

I updated the graddle version using one of the solutions here. This can be done from File -> Project Structure -> Project -> Gradle Version -> Type or select "6.9-rc-1" and click OK button.

Double-check if node is installed with node --version, if it is open -a /Applications/Android\ Studio.app Open the project and the error should disappear.

Bobby Nuel
  • 41
  • 4
1

You can kill gradle daemon, or just restart your machine if you made some changes, and it will work.

Kamko
  • 59
  • 3
1

Many of these answers are half-right but you must do both of these things:

  1. Make sure that the $PATH variable includes wherever your node is installed. You will will probably set this in .bashrc.

  2. Start Android Studio from the command-line.

adamwong246
  • 795
  • 9
  • 15
0

I had this issue on M1 mac, found a solution after 3 days, it was because of nvm and .zsh having issues. If you used brew to install it like i did, it's going to cause a lot of issues.

Solution:

I had to uninstall nvm

rm -rf ~/.nvm
rm -rf ~/.npm
rm -rf ~/.bower

Then install nvm via instructions on readme on its github page

curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.0/install.sh | bash

Other than that, there is a section about troubleshooting M1 macs, that might help futher if needed. But other than that, Android Studio works fine now without having to open it via terminal or any other work-arounds. (You might have to agree to the sdk license agreement if your build fails, view the build tab for the issue, to agree to the license, just go to Tools > Sdk Manager and uninstall the sdk, click apply and retick it and Apply to reinstall it and it will ask you about the license agreement also.

0

This is not a specific answer to the question, but as some of the comments here helped me resolve my issue, maybe this answer will help someone else.

I was struggling to run a Gradle project using Intellij IDEA on Ubuntu 22.04. It was giving me the same error: Cannot run program "X": error=2, No such file or directory.

Here is what I did to overcome that:

echo 'export PATH=$PATH:/path/to/X' >> ~/.bashrc

echo 'export PATH=$PATH:/path/to/X' >> ~/.profile

sudo echo 'export PATH=$PATH:/path/to/X' >> /etc/environment

I also added the path variable to Intellij IDEA: click File -> Settings -> Path Variables and then add the variable in question (name of the program: X).

As @Jari-Jokinen mentioned above, for the IDE to use program 'X' from /path/to/X you need to restart your computer. Both Intellij IDEA and Android Studio are similar and developed by Jetbrains, so I hope this can be useful to someone.

intumwa
  • 334
  • 2
  • 4
  • 15
0

For me.

I'm using a Mac Pro 2019 with Intel Processor.

when I executed yarn Android I got that same error the author said.

The only thing that really works.

Looks like that, in my case, some Android Studio config was wrong.

Jackson Smith
  • 576
  • 4
  • 14
0

There are a lot of solutions about this issue and most are talking about updating the gradle plugin. I have tested a lot of solutions and running the latest Android Studio version (Chipmunk 2021.2.1 Patch 1).

The main issue is still that AndroidStudio, with gradle version lower than 6.9.x, can not lookup properly the PATH environment, which is set by /bin/printenv tool from Android Studio application package itself. If you see in the Android Studio logfile that it can not execute the printenv command, please update to latest Android Studio version.

In 'Project Structure' select 'Gradle Version' 6.9 or higher and you can build your project properly.

In 'Project Structure' select 'Gradle Version' 6.9 or higher

Chris
  • 589
  • 4
  • 5
0

You should update Android Studio to latest version. It does work for me.

Bao Tran
  • 134
  • 1
  • 5
0

You can upgrade your Android studio to 2021.3.1. Its working for us.

pramod J B
  • 77
  • 1
  • 6
0
  1. close android studio
  2. end any android task from the task manager
  3. use terminal to build the app using
cd android && ./gradlew build
  1. launch android studio
  2. you should be able to run your app on a simulator
awaleed
  • 103
  • 1
  • 8
0

I was also facing issue on Mac(Monterey 12.6.1).I don't know what was the exact reason but I've just upgraded my Android studio artic fox to Android Studio Dolphin | 2021.3.1 Patch 1. And surprisingly my issue is resolved.

Hussnain Hashmi
  • 203
  • 2
  • 9
0

Nothing helped me, just when I changed Gradle JDk it started working

General Grievance
  • 4,555
  • 31
  • 31
  • 45
0

If you're using nvm, this can work: https://stackoverflow.com/a/69066155/10047450

But you need to run nvm use [version] (or just nvm use if you have an .nvmrc configured) in the terminal before launching android studio.

Kris B.
  • 13
  • 2
-2

Android Studio installs the latest Android SDK by default. Building a React Native app with native code, however, requires the Android 10 (Q) SDK in particular.

  • 1
    This does not provide an answer to the question. Once you have sufficient [reputation](https://stackoverflow.com/help/whats-reputation) you will be able to [comment on any post](https://stackoverflow.com/help/privileges/comment); instead, [provide answers that don't require clarification from the asker](https://meta.stackexchange.com/questions/214173/why-do-i-need-50-reputation-to-comment-what-can-i-do-instead). – Vatsal Dholakiya Aug 31 '21 at 13:51
-2

If you have a M1 Mac and are using Android Studio:

ouflak
  • 2,458
  • 10
  • 44
  • 49
Paul
  • 9
  • 4
  • This is good advice for M1, I found that same JDK as one of the few native options for JDK. But I guess it's not directly relevant to this question. – Karatekid430 Feb 03 '22 at 05:08