ssite command not found

In this troubleshooting guide we learn how to fix ssite command not found error message

Introduction

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

ssite: command not found

or when using sudo you get the following error message

sudo: ssite: command not found

Solutions to ssite: command not found

How To Fix ssite: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu ssite is provided by staticsite package.

staticsite is:

Static site generator based on markdown and jinja2.

Features:

  • themable
  • free content structure
  • hugo-style archetypes and front matter
  • live preview server

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

sudo apt-get -y install staticsite

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

You can also use apt command to install staticsite.

sudo apt -y install staticsite

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

sudo aptitude install staticsite

Summary

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