How to Install pywin32 on Windows?
Last Updated :
22 Sep, 2021
Pywin32 is a Python extension for windows that is used to access Windows API. In this article, we will look into the process of installing Pywin32 on a windows machine.
Pre-requisites:
The only thing that you need for installing Numpy on Windows are:
Installing Pywin32 on Windows using Conda:
If you want the installation to be done through conda, open up the Anaconda Powershell Prompt and use the below command:
conda install -c anaconda pywin32
Type y for yes when prompted.
You will get a similar message once the installation is complete:
Make sure you follow the best practices for installation using conda as:
- Use an environment for installation rather than in the base environment using the below command:
conda create -n my-env
conda activate my-env
Note: If your preferred method of installation is conda-forge, use the below command:
conda config --env --add channels conda-forge
Verifying Pywin32 Installation on Windows using Conda:
To verify if Pywin32 has been successfully installed in your system run the below command in Anaconda Powershell Prompt:
conda list pywin32
You'll get the below message if the installation is complete:

Installing Pywin32 on Windows using PIP:
If you want the installation to be done through PIP, open up the Command Prompt and use the below command:
pip install pywin32
You will get a similar message once the installation is complete:

Verifying Pywin32 Installation on Windows using PIP:
To verify if the Pywin32 has been successfully installed in your system run the below command in Command Prompt:
python -m pip show pywin32
You'll get the below message if the installation is complete:
Similar Reads
How to Install PyBrain on Windows? PyBrain is an open-source and free-to-use Python-based Machine Learning Library. Its main purpose is to provide machine learning tasks with flexible, easy-to-use, still a very powerful algorithms. It also provides a wide range of predefined environments which is used to test and compare different ty
2 min read
How to Install PIL on Windows? In this article, we will look into the various methods of installing the PIL package on a Windows machine. Prerequisite:Python PIP or Ananconda (Depending upon your preference)For PIP Users: Open up the command prompt and use the below command to install the PIL package: pip install Pillow The follo
1 min read
How to Install PIP on Windows PIP stands for "Preferred Installer Program" or "Pip Installs Packages" and is a standard package manager for Python that enables users to install and manage additional libraries and dependencies not included in the standard Python library. To use PIP, you must install Python on your Windows machine
6 min read
How to install Python on Windows? Python is a high-level programming language that has become increasingly popular due to its simplicity, versatility, and extensive range of applications. The process of How to install Python in Windows, operating system is relatively easy and involves a few uncomplicated steps. This article aims to
5 min read
How to Install PyOpenGL on Windows? PyOpenGL is the most common cross-platform Python binding to OpenGL. In this, article, we will look into the process of installing the PyopenGL Library on Windows. Pre-requisites: The only thing that you need for installing the Scrapy module on Windows are: Python PIP or Conda (depending upon user p
2 min read
How to Install Pygame on Windows ? In this article, we will learn how to Install PyGame module of Python on Windows. PyGame is a library of python language. It is used to develop 2-D games and is a platform where you can set python modules to develop a game. It is a user-friendly platform that helps to build games quickly and easily.
2 min read