# Install Virtualbox 7 on Windows 11

Recently, Virtualbox 7 for Windows was released. When installing it, I noticed that the installer alerts of the absence of a Python library. Here I'll demonstrate how to install Python, the 'pywin32' module and finally Virtualbox 7.

![virtualbox-alert.png](https://cdn.hashnode.com/res/hashnode/image/upload/v1667024070961/34YnlDnMA.png align="left")

## Steps:

* Install Python 3
* Install 'pywin32'
* Install Virtualbox 7

## Install Python 3

Start by installing Python 3. You can [download Python HERE](https://www.python.org/downloads/), on the official website. Open the 'EXE' file, select all options including '**add Python.exe to PATH**', and follow instructions.

![python3-install-wizard.png](https://cdn.hashnode.com/res/hashnode/image/upload/v1667023632684/SojPau_Ka.png align="left")

## Install Win32API Module

Virtualbox 7 requires the Python 3 'pywin32' module. Once Python its installed correctly, install this module with the following command:

```python
pip install pywin32
```

![python3-install-module.png](https://cdn.hashnode.com/res/hashnode/image/upload/v1667023386708/LxQp7s4u8.png align="left")

## Install Virtualbox 7

Now after installing '**pywin32**' module, [download and install Virtualbox](https://www.virtualbox.org/wiki/Downloads). After 'pywin32' it's installed, Virtualbox installer will not alert of 'pywin32' absence as before, and you may work with it without problems.

## Links

* [Virtualbox Downloads](https://www.virtualbox.org/wiki/Downloads)
* [Python Download](https://www.python.org/downloads/)
