Open In App

How to Install pywin32 on Linux?

Last Updated : 31 Jan, 2022
Improve
Improve
Like Article
Like
Save
Share
Report

Pywin32 is a Python extension or library for Windows OS which is used to access the characteristics of the Win32 application programming interface (API) on the Python language environment. It supported Python 3 and above versions. In this article, we will look into the process of installing Pywin32 on the Linux Operating System.

Requirements:

Installing pywin32 package on Linux using PIP

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

Step 1: First of all, we will install Python3 on our Linux Machine with the help of the following command:

sudo apt-get install python3

Installing-Python3-on-Linux

Step 2: Now, install the pip module which is required to install the packages in Python3. So we use the following command for installation:

sudo apt install python3-pip

Installing-the-pip-module

Step 3: Now, install the pywin32 package by using the following command.

sudo pip3 install pywin32 

 Installing-the-pywin32-package

Verifying pywin32 package Installation on Linux using PIP

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

python3 -m pip show pywin32 

You’ll get the below message if the installation is complete successfully. 

Verifying-pywin32-package-installation


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

Similar Reads