Install dependencies

In this Learning Path, you’ll compile and run an Android Voice Assistant application.

Begin by installing the latest version of Android Studio on your development machine.

Next, install the following command-line tools:

  • cmake; a cross-platform build system.
  • python3; interpreted programming language, used by project to fetch dependencies and models.
  • git; a version control system that you use to clone the Voice Assistant codebase.
  • adb; Android Debug Bridge, used to communicate with and control Android devices.

Install these tools with the appropriate command for your OS:

    

        
        

sudo apt update
sudo apt install git adb cmake python3 -y
  

    
    

        
        

brew install git android-platform-tools cmake python
  

    

Ensure the correct version of python is installed, the project needs python version 3.9 or later:

    

        
        

python3 --version
  

    
    

        
        

python3 --version
  

    
Back
Next