Ubuntu Tutorial

How To Install libfreecad-python3-0.19 on Ubuntu

Posted on April 1, 2023  (Last modified on May 20, 2023 )
3 minutes  • 446 words

Introduction

In this tutorial we learn how to install libfreecad-python3-0.19 on Ubuntu.

What is libfreecad-python3-0.19

libfreecad-python3-0.19 is:

FreeCAD is an Open Source CAx RAD based on OpenCasCade, Qt and Python. It features some key concepts like macro recording, workbenches, ability to run as a server and dynamically loadable application extensions and it is designed to be platform independent.

Currently, FreeCAD can import and display CAD models in IGES, STEP, and BRep formats and meshes in STL, BMS, AST and Wavefront OBJ formats. Editing and modeling features are currently somewhat limited.

This package contains shared library files for FreeCAD built against Python 3.

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

Install libfreecad-python3-0.19 Using apt-get

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

sudo apt-get update

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

sudo apt-get -y install libfreecad-python3-0.19

Install libfreecad-python3-0.19 Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install libfreecad-python3-0.19 using apt by running the following command:

sudo apt -y install libfreecad-python3-0.19

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

sudo aptitude -y install libfreecad-python3-0.19

How To Uninstall libfreecad-python3-0.19 on Ubuntu

To uninstall only the libfreecad-python3-0.19 package we can use the following command:

sudo apt-get remove libfreecad-python3-0.19

Uninstall libfreecad-python3-0.19 And Its Dependencies

To uninstall libfreecad-python3-0.19 and its dependencies that are no longer needed by Ubuntu, we can use the command below:

sudo apt-get -y autoremove libfreecad-python3-0.19

Remove libfreecad-python3-0.19 Configurations and Data

To remove libfreecad-python3-0.19 configuration and data from Ubuntu we can use the following command:

sudo apt-get -y purge libfreecad-python3-0.19

Remove libfreecad-python3-0.19 configuration, data, and all of its dependencies

We can use the following command to remove libfreecad-python3-0.19 configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge libfreecad-python3-0.19

Dependencies

libfreecad-python3-0.19 have the following dependencies:

References

Summary

In this tutorial we learn how to install libfreecad-python3-0.19 package on Ubuntu using different package management tools: apt, apt-get and aptitude.

Follow us

We provides various tutorials about Ubuntu