Open In App

How to Install Python-Amara on Linux?

Last Updated : 28 Feb, 2022
Improve
Improve
Like Article
Like
Save
Share
Report

Amara is a Python library for XML processing in a Python environment, designed to balance the native idioms of Python with the native character of XML. Amara is a cross-platformed library that works on Windows, Linux, and macOS. So in this article, we will be installing the Amara package in Python on Linux operating system by using the PIP manager.

Installing Amara package on Linux using PIP

Requirements:

To install the Amara package in Linux we have to follow the following steps:

Step 1: Install the latest version of Python3 on Linux Machine using the following command in the terminal:

sudo apt-get install python3

Step 2: Now, using the following command we install the pip module which is required to install and manage all the packages of Python3:

sudo apt install python3-pip

Step 3: Using the following command we install the Amara package:

sudo pip3 install Amara

Verifying Amara package installation on Linux using PIP

To verify if the Amara package has been successfully installed in your system run the below command in Terminal:

python3 -m pip show Amara

You’ll get the following output if the installation is completed successfully in your system.


Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads