sdpb command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
sdpb: command not found
or when using sudo you get the following error message
sudo: sdpb: command not found
Solutions to sdpb: command not found
How To Fix sdpb: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu sdpb is provided by sdpb package.
sdpb is:
SDPB is an open-source, arbitrary-precision, parallelized semidefinite program solver, designed for the conformal bootstrap. SDPB significantly outperforms less specialized solvers and should enable many new computations.
For more information, see “A Semidefinite Program Solver for the Conformal Bootstrap” at http://arxiv.org/abs/1502.02033.
To fix this problem, we can install more using the command below.
sudo apt-get -y install sdpb
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install sdpb.
sudo apt -y install sdpb
Or if you have aptitude installed you can use the following command.
sudo aptitude install sdpb
Summary
In this tutorial we learn how to fix sdpb command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.