---
title: "Installation"
---


{{% alert color="grey" %}}
*Purpose Summary. What is this page about?*

This page provides step‑by‑step instructions for installing Aspose.Words for Python via .NET, including system‑requirements guidance, the `pip install aspose-words` command, and a basic code example demonstrating usage.
{{% /alert %}}

Make sure your machine meets the [system requirements](/words/python-net/system-requirements/) before you begin.

This article explains how to install Aspose.Words for Python via .NET on your computer.

`pip` is the easiest way to download and install [Aspose.Words for Python via .NET](https://pypi.org/project/aspose-words/) APIs. To do this run the following command:

`pip install aspose-words`

Once the module is installed, you can use it fom your Python code:

{{< highlight python >}}
# Import Aspose.Words for Python via .NET module
import aspose.words as aw

# Create and save a simple document
doc = aw.Document()
builder = aw.DocumentBuilder(doc)
builder.writeln("Hello Aspose.Words for Python via .NET")

doc.save("C:\\Temp\\out.docx")
{{< /highlight >}}