I know that Issue #1 seems very similar to this, however I have followed the solution there and it does not work for me.
Problem
When trying to use pandoc-include like pandoc .\Book.md --filter pandoc-include -o book.pdf I get the error
Error running filter pandoc-include: Could not find executable pandoc-include
Background
I have done the following:
- Install Python from https://www.python.org/downloads/
- Run
pip install --upgrade pandoc, pip install pandoc-include
- Moved pandoc-include from the Roaming folder it was installed in (
C:\Users\myuser\AppData\Roaming\Python\Python311\site-packages), to the same folder as where pandoc is installed in (C:\Users\myuser\AppData\Local\Programs\Python\Python311\Lib\site-packages)
- Made sure that pandoc-include is in the path variable: running
echo $env:PATH returns my path, which contains C:\Users\myuser\AppData\Local\Programs\Python\Python311\Lib\site-packages
My pandoc version is 2.3 and pandoc-include is 1.2.0.
I know that Issue #1 seems very similar to this, however I have followed the solution there and it does not work for me.
Problem
When trying to use pandoc-include like
pandoc .\Book.md --filter pandoc-include -o book.pdfI get the errorError running filter pandoc-include: Could not find executable pandoc-includeBackground
I have done the following:
pip install --upgrade pandoc,pip install pandoc-includeC:\Users\myuser\AppData\Roaming\Python\Python311\site-packages), to the same folder as where pandoc is installed in (C:\Users\myuser\AppData\Local\Programs\Python\Python311\Lib\site-packages)echo $env:PATHreturns my path, which containsC:\Users\myuser\AppData\Local\Programs\Python\Python311\Lib\site-packagesMy pandoc version is 2.3 and pandoc-include is 1.2.0.