split-select command not found

In this troubleshooting guide we learn how to fix split-select command not found error message

Introduction

When you run more command in linux terminal / console, you get the following error message

split-select: command not found

or when using sudo you get the following error message

sudo: split-select: command not found

Solutions to split-select: command not found

How To Fix split-select: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu split-select is provided by split-select package.

split-select is:

Generates the logic for selecting a Split APK given some target Android device configuration.

Using the flag –generate will emit a JSON encoded tree of rules that must be satisfied in order to install the given Split APK. Using the flag –target along with the device configuration will emit the set of Split APKs to install, following the same logic that would have been emitted

To fix this problem, we can install more using the command below.

sudo apt-get -y install split-select

This command might take some time to finish depending on your machine internet connection.

You can also use apt command to install split-select.

sudo apt -y install split-select

Or if you have aptitude installed you can use the following command.

sudo aptitude install split-select

Summary

In this tutorial we learn how to fix split-select command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.