Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to develop for android and I want to add the ADB to my path so that I can launch it really easily. I have added directories before by for some reason ADB does not want to be found. This is very frustrating. Has anyone else had this problem before?

I created a file .profile and added the following to it.

export PATH = ${PATH}:/Users/simon/Libs/android-sdk-mac_x86/platform-tools/
export PATH = ${PATH}:/Users/simon/Libs/android-sdk-mac_x86/tools

When I check my environment path I see the following:

/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin:/Libs/android-sdk-mac_x86/tools:/Libs/android-sdk-mac_x86/platform-tools

So I know that it is added to my PATH variable. Now when I try to run ADB I get that it is not found.

-bash: ./adb: No such file or directory

This is very very frustrating. Could it be a problem with permissions? Has anyone had this problem with OSX and Android?

share|improve this question
note: putting spaces before and/or after the equals sign causes problems. it should look like "export PATH=${PATH}:/Users/simon/Libs/android-sdk-mac_x86/tools" – Ben H Mar 15 '12 at 17:25

5 Answers

up vote 8 down vote accepted

Why are you trying to run "./adb"? That skips the path variable entirely and only looks for "adb" in the current directory. Try running "adb" instead.

Edit: your path looks wrong. You say you get

/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin:/Libs/android-sdk-mac_x86/tools:/Libs/android-sdk-mac_x86/platform-tools

You're missing the /Users/simon part.

Also note that if you have both .profile and .bash_profile files, only the latter gets executed.

share|improve this answer
Tried both ./adb and adb.. Nothing, I have no idea what is wrong with this. – skoko Apr 2 '11 at 23:08
Where is adb supposed to be located? Check that it's there and that it has execute permissions (cd to the directory and do ls -l adb). – LaC Apr 2 '11 at 23:10
If I go to the directory I can run it no problem. Here is the output. -rwxrwxrwx 1 simon staff 179312 28 Feb 02:48 adb – skoko Apr 2 '11 at 23:13
@LaC, missing execute permissions on the file would be reported with bash: /bin/ls: Permission denied – sarnold Apr 2 '11 at 23:24
Thanks for this answer. It turns out both .profile and .bash_profile were both there. I had the values in .profile and yea. Now it works. Thanks a lot guys. – skoko Apr 2 '11 at 23:24
show 2 more comments

On my Macbook Pro, I've added the export lines to ~/.bash_profile, not .profile.

e.g.

export PATH=/Users/me/android-sdk-mac_86/platform-tools:/Users/me/android-sdk-mac_86/tools:$PATH
share|improve this answer
funny. I opened up that file...This exact line was already in there. I think eclipse added that while installing the plug-in? – skoko Apr 2 '11 at 23:10
It is possible, though I added mine myself. – David Caunt Apr 2 '11 at 23:24
According to johnnywey.wordpress.com/2008/04/17/fixing-bash-profile-in-os-x you may have conflicting profiles – David Caunt Apr 2 '11 at 23:26
I think that's exactly what the problem was. Another app (I think MacPorts) created .profile – skoko Apr 6 '11 at 10:30

It appears that you're still trying to execute adb with ./adb. That asks the shell to run the program named adb in the current working directory.

Try just adb without ./.

share|improve this answer
Tried that too. Nothing. This is seriously driving me nuts. – skoko Apr 2 '11 at 23:07
@user569594: What error message do you get with just adb? – sarnold Apr 2 '11 at 23:09
-bash: adb: command not found – skoko Apr 2 '11 at 23:14
@user569594: did you re-start your shell after editing .profile? (i.e., if you echo $PATH before adb, do you see the new directories?) – sarnold Apr 2 '11 at 23:18
yes, I mentioned that in the question. It shows up in the echo, bash for some reason just CAN NOT SEE IT. – skoko Apr 2 '11 at 23:21
show 3 more comments

I added export PATH=${PATH}:/Users/mishrapranjal/android-sdks/platform-tools/ into both places .bash_profile and .profile to make sure it works. Still it wasn't working and then I looked at sarnold's tip about restarting terminal and it worked like a charm. It saved my time of adding every time this into the PATH whenever I had to run adb. Thank you guys.

share|improve this answer

in order to make the terminal always have the file ~/.bashrc and there put the path you wish to use , by adding:

export PATH=$PATH:/XXX

where XXX is the path that you wish to use .

for adb , here's what i use:

export PATH=$PATH:/home/user/Android/android-sdk-linux_x86/platform-tools/

(where "user" is my user name) .

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.