Close Menu
DroidfeatsDroidfeats

    Subscribe to Updates

    Join our most passionate readers to get instant access to tech tips as they arrive!

    What's Hot
    Zoom vs. Teams vs. Google Meet: Which Platform is the Best?

    Zoom vs. Teams vs. Google Meet: Which Platform is the Best?

    May 14, 2025
    How to Recognize a Good Non GamStop Casino Bonus?

    How to Recognize a Good Non GamStop Casino Bonus?

    May 14, 2025
    Best Apps for Crazy Time Game – Tips for a Safe and Thrilling Experience

    Best Apps for Crazy Time Game – Tips for a Safe and Thrilling Experience

    May 13, 2025
    Facebook X (Twitter) Instagram
    • About
    • Privacy Policy
    • DMCA
    • Team
    • Get In Touch
    Facebook X (Twitter) Instagram Pinterest RSS
    DroidfeatsDroidfeats
    • Home
    • News
    • Apps
    • Tips
    • VPN
    • #TheBest
      • Get GCam Ports
      • USB Drivers
      • Get Magisk
      • Get Play Store
      • Get ADB binaries
    • Commands
    Best Deals
    DroidfeatsDroidfeats
    Home»Tools»[Guide] How to Install ADB [official] on Windows, macOS, and Linux
    Tools

    [Guide] How to Install ADB [official] on Windows, macOS, and Linux

    Saeed Ashif AhmedBy Saeed Ashif AhmedJanuary 28, 20204 Comments6 Mins Read
    Share
    Facebook Twitter LinkedIn Pinterest Reddit Email

    We have a lot of tutorials on Droidfeats to show you how to access certain features on Android smartphones. But installing ADB is a compulsion for every experiment to play on Android platforms. These are generally done with ADB (Android Debug Bridge) commands — a tool that Google offers to the developers for debugging various parts of the system. Since playing with some command lines is not an easy task for everyone, I have explained this tutorial on how to install ADB with the following easy step-by-step tutorials so that a first time user can perform it easily.

    How to install ADB

    As you continue reading below, you will find all the necessary download links in the further tutorial that required to install ADB on your computer.

    No matter what operating system you have — will be great for those who haven’t set up ADB yet!

    See also: Download Magisk [all versions] ZIP and How to quickly install it!

    This dedicated step-by-step guide on how to install ADB will open the window to customize your phone using Custom ROMs or Mods.

    Most of the tutorials on Droidfeats require ADB, where you can find a link to click how to install ADB on your computer. Since ADB can be installed on various Operating Systems, here, we will be covering how to install ADB on Windows, Mac, and Linux.


    How to Setup ADB (Android Debug Bridge)

    [alert-warning]Note: Setting up ADB on a computer is just half of the sum since you need to set up your device before starting the tutorial to accept the ADB commands.[/alert-warning]
    1. Go to the settings option on your device.
    2. Scroll down and tap on About device (This may be hidden behind the “System” option if you are in Android 8.0 Oreo).
    3. Now tap on “Build Number” 7 times to enable Developer Mode. You will see a pop-up toast when the Developer Mode is enabled.
    4. Now go back to the Setting, and enable USB Debugging mode option.
    5. You are partially done with setting up your device. Now head to the tutorial below on how to install ADB for your particular operating system.

    How to Install ADB on Windows

    1. Download the ADB ZIP file for Windows and extract the files into an easily accessible folder (like C:\adb)
    2. Open the Windows Explorer and navigate the folder where you had extracted the contents from the ADB ZIP file.
    3. Now, open Command Prompt on the same directory as ADB binary. Press the SHIFT key and right-click on an empty space. Select “Open PowerShell window here” or “Open command window here” from the pop-up menu.
    4. Connect your device to PC using official USB cable (provided by device brand). You should change the USB mode to “file transfer (MTP)” mode. Some device may or may not required this, but for compatibility, it’s always good to select MTP mode.
    5. In Command Prompt Window, type “adb devices” and hit enter to launch the ADB daemon.
    6. On your device screen, you will see a prompt to allow or cancel USB Debugging access. Tap on “OK” to allow USB debugging. You may check the “Always Allow for this computer” option if you never want to see this pop-up again.
    7. Finally, re-enter the command from Step #5. If everything is successful, you should see the device serial number on the Command Prompt screen.

    Hurray! You can now run ADB commands on your device! Go forward and start modding it! Check out our Custom ROM or Official Firmware section; I hope you will get something helpful!


    How to Install ADB on macOS

    [alert-announce]

    (UPDATE 28/02/2020): We have a detailed guide for the installation and setting ADB on macOS using Homebrew. Please check the following updated post:

  • How to Setup ADB on Mac and install TWRP on Android device (Apple user’s guide)
  • [/alert-announce]
    1. Download the ADB ZIP file for macOS and extract the file to an easily accessible location like the desktop.
    2. Open Terminal. To navigate the folder you extracted the ADB, enter the following command: cd /path/to/extracted/folder/
    3. For example, in my case, it looks: cd /Users/Doug/Desktop/platform-tools/
    4. Now, connect your device to your Mac using a compatible USB cable. Change the USB mode to “file transfer (MTP)” mode. This ensures that you won’t be facing any issue due to USB connection.
    5. Once the terminal is in the same folder where the ADB tool is located, execute the following command: “adb devices” to launch the ADB Daemon.
    6. You will see a prompt of ‘Allow USB debugging‘ on your device. Just allow the connection immediately.
    7.  Finally, re-enter the command from Step #5. If everything is successful, you should see the device serial number on the macOS’s Terminal window.

    Hurray! You can now run ADB commands on your device! Go forward and start modding it! Check out our Custom ROM or Official Firmware section; I hope you will get something helpful!


    How to Install ADB on Linux OS

    1. Download the ADB ZIP file for Linux and extract it on an easily accessible location like the desktop.
    2. Open the terminal and enter the following command: cd /path/to/extracted/folder/
    3. The directory will be changed to where you extracted the ADB files. (e.g: cd /Users/Doug/Desktop/platform-tools/)
    4. Now, connect your device to computer using the compatible USB cable. Make sure to change the USB mode to “file transfer (MTP)” mode. This ensures that you won’t be facing any issue due to USB connection.
    5. Once the terminal is in the same folder where the ADB tool is located, execute the following command: “adb devices” to launch the ADB Daemon.
    6. Check your device; it will ask you to “Allow USB Debugging” in a prompt window. Go forward and grant it!
    7.  Finally, re-enter the command from Step #5. If everything is successful, you should see the device serial number on the macOS’s Terminal window.

    Hurray! You can now run ADB commands on your device! Go forward and start modding it! Check out our Custom ROM or Official Firmware section; I hope you will get something helpful!

    Some Linux users can install ADB driver more easily on their computers. The above-mentioned tutorial will surely work for you but if you are using Debian or Fedora/SUSE-based distro of Linux, you can skip step #1 of the tutorial and use the following piece of command:

    • Debian-based Linux users can type the following command to install ADB: sudo apt-get install adb
    • Fedora/SUSE-based Linux users can type the following command to install ADB: sudo yum install android-tools

    Any Problem? If you encounter any problem, please comment below, and we will get back to you as soon as possible.

    Please don’t forget to share if you have found this post helpful!

    Was this article helpful?
    YesNo
    ADB
    Follow on Google News Follow on Facebook
    Share. Facebook Twitter Pinterest LinkedIn Tumblr Email
    Previous ArticleInstall Pixel Experience on Zenfone Max Pro M1 Android 10 Custom ROM
    Next Article “Beautiful Floral Art” Samsung Galaxy S20 wallpapers (3200×3200 resolution) – download now!
    Saeed Ashif Ahmed
    • Website
    • Facebook
    • X (Twitter)
    • LinkedIn

    Saeed Ashif Ahmed is passionate about emerging technologies and their potential to create a fairer world. A car enthusiast and civil engineer, he loves cricket and cherishes his alma mater, Navodaya Vidyalaya (JNV).

    Related Posts

    How I Recovered My Lost Android Photos with Stellar Data Recovery (And Lived to Tell the Tale)

    How I Recovered My Lost Android Photos with Stellar Data Recovery (And Lived to Tell the Tale)

    Sponsor: StellarJanuary 4, 2025
    Android USB Drivers for Windows and Mac (Official Download)
    Tools

    Android USB Drivers for Windows and Mac (Official Download)

    March 21, 2024
    How to Setup ADB on Mac and install TWRP on Android (Apple user’s manual)
    Tools

    How to Setup ADB on Mac and install TWRP on Android (Apple user’s manual)

    January 18, 2023
    View 4 Comments

    4 Comments

    1. Pieter Rijke on May 30, 2018 2:29 am

      The command is “.\adb devices” not “adb devices”

      Reply
      • Leo on September 6, 2020 4:14 pm

        THANK YOU

        Reply
    2. Pavan on August 8, 2018 3:39 pm

      I was wondering about the command too.

      “adb devices” worked fine for me.

      Thanks man.

      Reply
    3. Marcel Wouda on December 28, 2018 9:00 am

      After following all the steps on my mac it will not start adb.
      I get the following message:

      MacBook-Pro-van-Marcel-2:platform-tools marcelwouda$ adb devices
      -bash: adb: command not found

      Any suggestions?

      Reply
    Leave A Reply Cancel Reply

    This site uses Akismet to reduce spam. Learn how your comment data is processed.

    Top Posts
    MX Player Custom Codec [AC3, DTS, MLP, TrueHD, and more]

    MX Player Custom Codec [AC3, DTS, MLP, TrueHD, and more]

    January 4, 202592,809
    Do a Barrel Roll 20 Times on Google & other search games (2025)

    Do a Barrel Roll 20 Times on Google & other search games (2025)

    April 12, 202558,354
    47 best root apps for Android devices in 2025 (NEW LIST – Updated)

    47 best root apps for Android devices in 2025 (NEW LIST – Updated)

    April 16, 202526,367
    Stay In Touch
    • Facebook
    • Twitter
    • Instagram
    • Pinterest
    • Reddit
    • Telegram
    Latest Reviews
    Your dream Tablet just got cheaper: Galaxy Tab S9 Ultra sale
    9.5
    Deals

    Your dream Tablet just got cheaper: Galaxy Tab S9 Ultra sale

    Leisangthem RajshreeMarch 3, 2024
    Tixee Review – Honest opinion from a trader [Updated] Tips

    Tixee Review – Honest opinion from a trader [Updated]

    Saeed Ashif AhmedNovember 3, 2022

    Subscribe to Updates

    Join our most passionate readers to get instant access to tech tips as they arrive!

    Most Popular
    MX Player Custom Codec [AC3, DTS, MLP, TrueHD, and more]

    MX Player Custom Codec [AC3, DTS, MLP, TrueHD, and more]

    January 4, 202592,809
    Do a Barrel Roll 20 Times on Google & other search games (2025)

    Do a Barrel Roll 20 Times on Google & other search games (2025)

    April 12, 202558,354
    47 best root apps for Android devices in 2025 (NEW LIST – Updated)

    47 best root apps for Android devices in 2025 (NEW LIST – Updated)

    April 16, 202526,367
    Our Picks
    Best Dynamic Island Wallpapers for iPhone 16, 16 Pro and Pro Max

    Best Dynamic Island Wallpapers for iPhone 16, 16 Pro and Pro Max

    April 25, 2025
    47 best root apps for Android devices in 2025 (NEW LIST – Updated)

    47 best root apps for Android devices in 2025 (NEW LIST – Updated)

    April 16, 2025
    Do a Barrel Roll 20 Times on Google & other search games (2025)

    Do a Barrel Roll 20 Times on Google & other search games (2025)

    April 12, 2025

    Subscribe to Updates

    Join our most passionate readers to get instant access to tech tips as they arrive!

    Facebook X (Twitter) Instagram Pinterest
    • About Us
    • Privacy Policy
    • Terms
    • Jobs
    • Contact
    © 2025 Droidfeats. All rights reserved.

    Type above and press Enter to search. Press Esc to cancel.

    Ad Blocker Enabled!
    Ad Blocker Enabled!
    Our website is made possible by displaying online advertisements to our visitors. Please support us by disabling your Ad Blocker.