quarto-dev / quarto-dev/quarto-cli
Allow to customize installation directory for TinyTeX installed with quarto
@cderv is already working on this.
Since Jan 6, 2025.
- Dominant language
- JavaScript
- Stars
- 6k
- Forks
- 458
- Avg merge
- 1d 9h
- Merged PRs (30d)
- 41
Description
Discussed in https://github.com/quarto-dev/quarto-cli/discussions/11748
Originally posted by averms December 28, 2024
Use quartoDataDir for TinyTeX (Original Title)
Description
On Linux, Quarto already follows the XDG Base Directory spec, which is very nice. It results in a clean $HOME. However, the one place it doesn't is when installing TinyTeX. It would be great if TinyTeX was also installed following the XDG Base Directory spec just like everything else. This would put it in XDG_DATA_HOME/quarto, right next to chromium.
I understand that upstream TinyTeX already has defaults and there is value in sticking to them. However, I noticed that you guys don't even use the upstream script and don't add the binaries to the user's PATH so you're already deviating from upstream.
Note about TinyTeX and its ecosystem
Default install path
- TinyTeX can be installed its install scripts, through R
tinytex::install_tinytex()or throughquarto install tinytex - For now defaults installed path are aligned
- Linux:
~/.TinyTeX - Mac:
~/Library/TinyTeX - Windows:
%APPDATA%/TinyTeX
Quarto does install by default in the same place is no existing version if found in those default place. This allows for Quarto to re-use an existing install done with R or using install script.
Custom install path
- Install script allows to customize using
TINYTEX_DIR - R install can be customized using
tinytex::install_tinytex() - For now
quarto install tinytexcan't be customized.
In case of customization, quarto won't be found
I believe we should at least offer a way to customize installation, either through TINYTEX_DIR env var, or through command line flag to quarto install tinytex
Contributor guide
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Assessment
This issue has not been assessed yet.