How To Install chipw on Debian 10

Learn how to install chipw on Debian 10 with this tutorial. chipw is custom level editor for TileWorld / Chips Challenge??

Introduction

In this tutorial we learn how to install chipw on Debian 10.

What is chipw

chipw is:

Tile World is an emulation of the game “Chip’s Challenge”. “Chip’s Challenge” was originally written for the Atari Lynx by Chuck Sommerville, and was later ported to MS Windows by Microsoft.

This package contains a level editor for Tile World, and supports all tiles used in the game. Levels created using this editor can be played in both Tile World and Chip’s Challenge.

There are three methods to install chipw on Debian 10. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.

Install chipw Using apt-get

Update apt database with apt-get using the following command.

sudo apt-get update

After updating apt database, We can install chipw using apt-get by running the following command:

sudo apt-get -y install chipw

Install chipw Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install chipw using apt by running the following command:

sudo apt -y install chipw

Install chipw 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 chipw using aptitude by running the following command:

sudo aptitude -y install chipw

How To Uninstall chipw on Debian 10

To uninstall only the chipw package we can use the following command:

sudo apt-get remove chipw

Uninstall chipw And Its Dependencies

To uninstall chipw and its dependencies that are no longer needed by Debian 10, we can use the command below:

sudo apt-get -y autoremove chipw

Remove chipw Configurations and Data

To remove chipw configuration and data from Debian 10 we can use the following command:

sudo apt-get -y purge chipw

Remove chipw configuration, data, and all of its dependencies

We can use the following command to remove chipw configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge chipw

Dependencies

chipw have the following dependencies:

References

Summary

In this tutorial we learn how to install chipw package on Debian 10 using different package management tools: apt, apt-get and aptitude.