Quarto: Difference between revisions

No edit summary
Reptee (talk | contribs)
mNo edit summary
 
(One intermediate revision by the same user not shown)
Line 100: Line 100:
+    export RETICULATE_PYTHON=$(which python3)
+    export RETICULATE_PYTHON=$(which python3)
+  '';
+  '';
</syntaxhighlight>When the issue appears in vscodium, one can fix it via wrapping <code>codium</code> binary:<syntaxhighlight lang="nix">
pkgs.vscodium.overrideAttrs (old: {
  installPhase = ''
    ${old.installPhase or ""}
    wrapProgram $out/bin/codium \
      --set RETICULATE_PYTHON ${pkgs.python3}/bin/python3
  '';
})
</syntaxhighlight>
</syntaxhighlight>