Mercurial > hgrepos > Python2 > PyMuPDF
view mupdf-source/docs/guide/install.md @ 23:3b13504f9d89
Use the official packaging.version.Version to parse version strings.
While there revert the previons change to _int_rc(): it is not needed
now.
| author | Franz Glasner <fzglas.hg@dom66.de> |
|---|---|
| date | Fri, 19 Sep 2025 12:40:07 +0200 |
| parents | b50eed0cc0ef |
| children |
line wrap: on
line source
# Installing ## Download Either [download a release](https://mupdf.com/releases) or clone the latest source from the Git repository: git clone --recursive git://git.ghostscript.com/mupdf.git ## Build on Windows For Windows use the Visual Studio solution file in `platform/win32/mupdf.sln`. ## Build on MacOS MacOS should be buildable in the same way as for Linux, but the exact set of required libraries may vary. No viewer option is available as standard. ## Build on Linux (and BSD and macOS) Use the GNU makefile to build on Linux or the BSDs. make The viewers require the X11 (and OpenGL for mupdf-gl) headers and libraries to build. Install these packages (the exact package names may vary depending on your distro of choice): sudo apt install xorg-dev libxcursor-dev libxrandr-dev libxinerama-dev sudo apt install mesa-common-dev libgl1-mesa-dev packages libglu1-mesa-dev Alternatively, if you only want to build the MuPDF library command line tools: make tools ## Testing the build The steps above will put the libraries and binaries in the `build/release/` directory. The tools and viewers are portable executables that don't need any auxiliary files, so can be run from anywhere. To make sure that everything works, you can run them directly from the build directory: ./build/release/mutool -v ## Install on Linux You can safely copy the binaries to any directory in your path. cp ./build/release/mutool ~/.local/bin/mutool Or, if you prefer you can install the binaries, libraries, and headers system wide: make prefix=/usr/local install Good luck!
