How To Install micropython-doc on Ubuntu 22.04

In this tutorial we learn how to install micropython-doc on Ubuntu 22.04. micropython-doc is Documentation and examples for MicroPython - HTML format

Introduction

In this tutorial we learn how to install micropython-doc on Ubuntu 22.04.

What is micropython-doc

micropython-doc is:

The Unix port of MicroPython allows testing of programs intended for microcontrollers on the local Debian host machine (except for hardware-specific parts). It can also be used as another, tiny but mostly compatible, Python 3 runtime for small scripts (but it comes with FFI and JNI support). This port uses optimised assembly code on ARM/Thumb, MIPS, i386 and amd64, and setjmp/longjmp-based fallback code on all other architectures.

This contains the documentation in HTML format.

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

Install micropython-doc Using apt-get

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

sudo apt-get update

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

sudo apt-get -y install micropython-doc

Install micropython-doc Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install micropython-doc

Install micropython-doc 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 Ubuntu. Update apt database with aptitude using the following command.

sudo aptitude update

After updating apt database, We can install micropython-doc using aptitude by running the following command:

sudo aptitude -y install micropython-doc

How To Uninstall micropython-doc on Ubuntu 22.04

To uninstall only the micropython-doc package we can use the following command:

sudo apt-get remove micropython-doc

Uninstall micropython-doc And Its Dependencies

To uninstall micropython-doc and its dependencies that are no longer needed by Ubuntu 22.04, we can use the command below:

sudo apt-get -y autoremove micropython-doc

Remove micropython-doc Configurations and Data

To remove micropython-doc configuration and data from Ubuntu 22.04 we can use the following command:

sudo apt-get -y purge micropython-doc

Remove micropython-doc configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge micropython-doc

References

Summary

In this tutorial we learn how to install micropython-doc package on Ubuntu 22.04 using different package management tools: apt, apt-get and aptitude.