pylsp command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
pylsp: command not found
or when using sudo you get the following error message
sudo: pylsp: command not found
Solutions to pylsp: command not found
How To Fix pylsp: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu pylsp is provided by python3-pylsp package.
python3-pylsp is:
The Language Server Protocol is designed to standardise how language servers and development tools communicate. This package provides a Python implementation.
A number of optional providers can be enabled if the requisite dependencies are installed, which are listed as Suggests.
To fix this problem, we can install more using the command below.
sudo apt-get -y install python3-pylsp
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install python3-pylsp.
sudo apt -y install python3-pylsp
Or if you have aptitude installed you can use the following command.
sudo aptitude install python3-pylsp
Summary
In this tutorial we learn how to fix pylsp command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.