pdf2wordx is published on PyPI and can be installed with a singleDocumentation Index
Fetch the complete documentation index at: https://mintlify.com/dev2forge/pdf2wordx/llms.txt
Use this file to discover all available pages before exploring further.
pip command on any supported platform. The package bundles all Python-level dependencies automatically — pdf2docx for the conversion engine and chromologger for logging — so there is nothing extra to configure after the install completes. Whether you are on Windows, macOS, or Linux, the workflow is identical: install once, then launch the GUI directly from your terminal.
pdf2wordx requires Python 3.8, 3.9, 3.10, 3.11, or 3.12. Python 3.13 and above are not yet supported. Run
python --version to confirm your version before installing.Primary install command
The fastest way to get started is a direct pip install:pdf2wordx==2.1.1 along with its two dependencies: pdf2docx==0.5.8 and chromologger==0.1.8.
Step-by-step installation
Create a virtual environment (recommended)
Creating a virtual environment is optional but strongly recommended. Use the tab for your operating system below.
- Windows
- macOS
- Linux
Open Command Prompt or PowerShell and run:Once activated, your prompt will be prefixed with
(.venv) to confirm the environment is active.Install pdf2wordx via pip
With your virtual environment active (or using your global Python environment), run:pip will download and install
pdf2wordx together with pdf2docx==0.5.8 and chromologger==0.1.8. The install typically completes in under a minute on a standard internet connection.To install a specific version explicitly:Verify the installation
Once the install finishes, confirm that the If the installation was successful, the PDF2WORDX graphical interface will open immediately. No further configuration is needed. If the command is not found, ensure that your virtual environment is activated and that the Python
pdf2wordx command is available by launching the application directly from your terminal:Scripts (Windows) or bin (macOS/Linux) directory is on your PATH.Dependency overview
| Package | Version | Purpose |
|---|---|---|
pdf2docx | ==0.5.8 | Core PDF-to-Word conversion engine |
chromologger | ==0.1.8 | Application event and error logging |
Tkinter on Linux
Tkinter ships as part of the Python standard library on Windows and macOS. On Linux, however, some distributions package it separately from the main Python install. If you see an error such asModuleNotFoundError: No module named 'tkinter' when launching pdf2wordx, install the system package for your distribution:
pdf2wordx again and the GUI will start normally.
Next steps
Now that pdf2wordx is installed, head over to the Quickstart guide to convert your first PDF to a.docx file in minutes.