pylama command not found
In this troubleshooting guide we learn how to fix pylama command not found error message
Introduction
When you run more command in linux terminal / console, you get the following error message
pylama: command not found
or when using sudo you get the following error message
sudo: pylama: command not found
Solutions to pylama: command not found
How To Fix pylama: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu pylama is provided by pylama package.
pylama is:
pylama s a code audit tool for Python and JavaScript. It wraps the following tools:
- PEP8 © 2012-2013, Florent Xicluna;
- PEP257 © 2012, GreenSteam, http://greensteam.dk/
- PyFlakes © 2005-2013, Kevin Watters;
- Mccabe © Ned Batchelder;
- Pylint © 2013, Logilab (should be installed ‘pylama_pylint’ module);
- gjslint © The Closure Linter Authors (should be installed ‘pylama_gjslint’ module);
This package installs the tool in Python 3.
To fix this problem, we can install more using the command below.
sudo apt-get -y install pylama
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install pylama.
sudo apt -y install pylama
Or if you have aptitude installed you can use the following command.
sudo aptitude install pylama
Summary
In this tutorial we learn how to fix pylama command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.