pandoc-crossref
must match the pandoc
version, and also only the 3.10.0 release works on OSX Big Sur. Thus, it is not possible to get pandoc
and pandoc-crossref
running in a conda
environment from the official channel or from conda-forge
.
I could easily download the matching binaries from https://github.com/lierdakil/pandoc-crossref/releases/tag/v0.3.10.0 and copy them e.g. to the bin
path:
$ which pandoc-crossref
/usr/local/bin/pandoc-crossref
$ curl -OL https://github.com/lierdakil/pandoc-crossref/releases/download/v0.3.10.0/pandoc-crossref-macOS.tar.xz
$ tar -xzvf pandoc-crossref-macOS.tar.xz
$ mv pandoc-crossref /usr/local/bin/pandoc-crossref
But I think that is not a clean approach, because conda
will not know that I updated the version for pandoc-crossref
.
What is a clean approach for updating a package managed by conda
from a binary available on Github?