How To Install storymaps on Debian 9
Introduction
In this tutorial we learn how to install storymaps
on Debian 9.
What is storymaps
storymaps is:
StoryMaps is a graphical story planning and writing application for children that breaks down the elements of traditional fairy tales into building blocks, following Vladimir Propp’s plot functions.
With StoryMaps children can easily create their own stories: selecting the plot cards with the story cards, creating a story map and writing their own story using a text editor. Once finished, the application can be used to export the story into HTML format.
There are three methods to install storymaps
on Debian 9. We can use apt-get
, apt
and aptitude
. In the following sections we will describe each method. You can choose one of them.
Install storymaps Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install storymaps
using apt-get
by running the following command:
sudo apt-get -y install storymaps
Install storymaps Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install storymaps
using apt
by running the following command:
sudo apt -y install storymaps
Install storymaps Using aptitude
If you want to follow this method, you might need to install aptitude first since aptitude is usually not installed by default on Debian. Update apt database with aptitude
using the following command.
sudo aptitude update
After updating apt database, We can install storymaps
using aptitude
by running the following command:
sudo aptitude -y install storymaps
How To Uninstall storymaps on Debian 9
To uninstall only the storymaps
package we can use the following command:
sudo apt-get remove storymaps
Uninstall storymaps And Its Dependencies
To uninstall storymaps
and its dependencies that are no longer needed by Debian 9, we can use the command below:
sudo apt-get -y autoremove storymaps
Remove storymaps Configurations and Data
To remove storymaps
configuration and data from Debian 9 we can use the following command:
sudo apt-get -y purge storymaps
Remove storymaps configuration, data, and all of its dependencies
We can use the following command to remove storymaps
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge storymaps
Dependencies
storymaps have the following dependencies:
References
Summary
In this tutorial we learn how to install storymaps
package on Debian 9 using different package management tools: apt
, apt-get
and aptitude
.