Download & Installation¶
Instructions for Windows Users¶
pdfposter requires Python. If you don’t have Python installed already, download and install Python 3.13 from https://python.org/download/3.13/
During installation, make sure to check “Include into PATH”.
If you already have Python installed, please check that your Python directory (normally
C:\Python313for python 3.13) and the Python Scripts directory (normallyC:\Python313\Scripts) are in the system path. If not, just add them in to thePathsystem variable.Install pdfposter by running
pip install pdfposter
Then run the console command
pdfposter --helpto get detailed help.If the command
pipis unknown to you system, please refer to the pip homepage for help.
Instructions for GNU/Linux and other Operating Systems¶
Most current GNU/Linux distributions provide packages for pdfposter. Simply search your distribution’s software catalog.
Also many vendors provide Python, and some even provide pdfposter. Please check your vendor’s software repository.
If your distribution or vendor does not provide a current version of pdfposter please read on.
If your vendor does not provide python please download Python 3.13 from https://www.python.org/download/ and follow the installation instructions there.
If you distribution or vendor missed providing pip, alongside python, please check your vendor’s or distribution’s software repository for a package called pip or python-pip. If this is not provided, please refer to the pip homepage for help.
Optionally you might want to install pypdf
- which is a requirement for pdfposter -
provided by your distribution or vendor
so at least this package will be maintained by your distribution.
Check for a package named python3-pypdf or that like.
Then continue with Installing pdfposter using pip below.
Installing pdfposter using pip¶
After installing Python (and optionally pypdf), just run:
sudo pip install pdfposter
to install pdfposter for all users. For installing pdfposter for yourself only, run:
pip install --user pdfposter
If your system does not have network access
download pdfposter from https://pypi.org/project/pdfposter/,
download pypdf from https://pypi.org/project/pypdf/, and
run
sudo pip install pdfposter-*.tar.gz pypdf-*.tar.gz
respective
pip install --user pdfposter-*.tar.gz pypdf-*.tar.gz