-
-
Notifications
You must be signed in to change notification settings - Fork 3.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
pandoc-lua can't require binary packages when installed with Conda #10069
Comments
See also #6850. A PR to clear that up in the docs would be greatly appreciated. |
Thanks @tarleb -- this is quite a messy issue to document, the current reference to this in the docs is only for the statically-linked linux build, and my issue was on a conda-built binary for macOS. I wonder if a note right at the top under |
I also wonder whether it is worth mentioning the fact that Conda can be used to install pandoc is worth adding to that doc as well? |
Adding Conda as another install option would be good, I think 👍
Good idea. Would you have time to create a PR? |
Yes, I can do this. |
…nstall options (#10098) See #10069 -- the static linked pandoc on other OSes also have a limitation to use binary lua packages. So added this point at the top of the document. In addition conda-forge is cross-platform way to install pandoc and other tools, added to Windows, macOS and Linux sections. Co-authored-by: iandol <[email protected]>
Explain the problem.
This is a weird issue. I've been trying to switch to more isolated workflow, using local environments of tools, and in this case used a conda manager pixi to install
lua
luarocks
andpandoc
local to a working folder. I usedluarocks
to install a lua debugging packagemobdebug
. Given a minimaltest.lua
script:Run with lua it is ok:
but run with pandoc-lua, a
mapping process and mapped file (non-platform) have different Team IDs
error occurs:This error only occurs for compiled libraries, pure lua code
require
s are ok. Something in the way pandoc is compiled increases the security level of the bundledlua
. I thought I'd report this edge case for visibility than imagining it could be fixed.Pandoc version?
V3.3 on macOS 14.6
The text was updated successfully, but these errors were encountered: