Install pandoc using pypandoc
masterIf you have installed pypandoc but not pandoc, you can download and install pandoc programmatically. This works on Windows, Mac OS X, and Linux (64-bit Intel). By default, it installs the latest version to a location that is automatically added to the search path.
from pypandoc.pandoc_download import download_pandoc
# Download the latest version to the default path
download_pandoc()
# Download a specific version
download_pandoc(version='1.19.1')Alternatively, use the CLI:
# Install latest pandoc to default path
pypandoc download
# Download a specific version
pypandoc download --version 3.6