landslide command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
landslide: command not found
or when using sudo you get the following error message
sudo: landslide: command not found
Solutions to landslide: command not found
How To Fix landslide: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu landslide is provided by python-landslide package.
python-landslide is:
Landside is a tool which can generates an HTML5 slideshow using lightweight markup as input.
You can write your slide contents easily using two syntaxes:
- Markdown
- ReStructuredText
This tool support CSS/JS theming, PDF export (using PrinceXML Python library), embed images with Base64 (for stand-alone document) and fancy transitions.
Sample presentation is visible here : http://slides.html5rocks.com/.
This package no longer ships the original landslide tool, but a compatibility wrapper for darkslide. After you have updated your scripts to use darkslide, this package may be safely removed.
To fix this problem, we can install more using the command below.
sudo apt-get -y install python-landslide
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install python-landslide.
sudo apt -y install python-landslide
Or if you have aptitude installed you can use the following command.
sudo aptitude install python-landslide
Summary
In this tutorial we learn how to fix landslide command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.