Installation

Install from PyPI

PyPI (Python Package Index) is the easiest way to download and install GroupDocs.Signature for Python. There are several ways to install it in your project.

Install via pip

The simplest way to install GroupDocs.Signature is using pip, Python’s package installer:

pip install groupdocs-signature-net

Install in a Virtual Environment

It’s recommended to install the package in a virtual environment to avoid conflicts with other Python packages:

# Create a virtual environment
python -m venv venv

# Activate the virtual environment
# On Windows:
venv\Scripts\activate
# On macOS/Linux:
source venv/bin/activate

# Install the package
pip install groupdocs-signature-net

Install with Specific Version

To install a specific version of the package:

pip install groupdocs-signature-net==25.4.0

Install from Wheel File

You can also install GroupDocs.Signature using a wheel file downloaded from the Downloads section:

  1. Download the appropriate wheel file for your Python version and system architecture
  2. Install using pip:
pip install path/to/groupdocs_signature_net-25.4.0-py3-none-any.whl

Verify Installation

To verify that the installation was successful, you can run this Python code:

import groupdocs.signature as signature

# Create an instance of Signature class
signature = signature.Signature("sample.pdf")

# If no errors occur, the installation was successful
print("GroupDocs.Signature installed successfully!")

System Requirements

Make sure your system meets the following requirements:

  • Python 3.6 or later
  • .NET Framework 4.7.2 or later
  • Windows, macOS, or Linux operating system

For detailed system requirements, please refer to the System Requirements page.