- Open msys2 shell
- Get pdf-tools
git clone https://github.com/politza/pdf-tools cd pdf-tools
- Update and install dependencies, skipping any you already have
pacman -Syu pacman -S base-devel pacman -S mingw-w64-x86_64-toolchain pacman -S mingw-w64-x86_64-zlib pacman -S mingw-w64-x86_64-libpng pacman -S mingw-w64-x86_64-poppler pacman -S mingw-w64-x86_64-imagemagick
- Open mingw64 shell
- Compile pdf-tools
make -s
- Open emacs
- Install
M-x package-install-file RET pdf-tools-${VERSION}.tar RET
- Activate package
M-x pdf-tools-install RET
- Test
M-x pdf-info-check-epdfinfo RET
- Step 8 failed for me and it took me a while to figure out why. There were
two problems to be fixed
- epdfinfo.exe was loading a library from git-for-windows and there was
an error from this. To fix this I made sure the mingw libraries were
ahead of the git-for-windows ones in my path like this
(setenv "PATH" (concat "C:\\msys64\\mingw64\\bin;" (getenv "PATH")))
- The default encoding for newly created files was utf-8-dos, which uses
line endings that epdfinfo doesn’t like. I originally had
(prefer-coding-system 'utf-8)
but needed
(prefer-coding-system 'utf-8-unix)
- epdfinfo.exe was loading a library from git-for-windows and there was
an error from this. To fix this I made sure the mingw libraries were
ahead of the git-for-windows ones in my path like this
Dear Justin,
Thank you for this instructions. I followed all steps and it all seem to run ok including the test (
M-x pdf-info-check-epdfinfo RET
gives "The epdfinfo program appears to be working."). However, when I open a pdf in emacs I see just some source code of pdf and the following error in messages buffer:Do you have any suggestion what the problem is and/or how to make pdf-tools work?
Kind regards,
Stas