Install GroupDocs.Markdown for Python via .NET on Linux
Leave feedback
On this page
This article explains how to install and run GroupDocs.Markdown for Python via .NET on Linux and macOS. The package bundles the .NET runtime â you do not need to install .NET separately. No GDI+, fonts, or other system libraries are required for Markdown conversion.
Prerequisites
The only system-level requirement is ICU (International Components for Unicode), which is used by the bundled .NET runtime for text processing.
Most standard Linux distributions and non-slim Docker images already include ICU. You only need to install it on minimal or slim systems:
Non-slim Python images (python:3.13) include ICU and all necessary system libraries. No additional packages are needed â just install the pip package:
FROM python:3.13RUN pip install --no-cache-dir groupdocs-markdown-netWORKDIR /appCOPY . .CMD["python","convert.py"]
Slim image
Slim Python images (python:3.13-slim) do not include ICU. Add it as the only extra dependency: