We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bc19e86 commit 8df4052Copy full SHA for 8df4052
.github/workflows/cache.yml
@@ -47,6 +47,21 @@ jobs:
47
run: |
48
pip install --upgrade "jax[cuda]" -f https://storage.googleapis.com/jax-releases/jax_cuda_releases.html
49
nvidia-smi
50
+ # Install LaTeX (Support for matplotlib)
51
+ - name: Install latex dependencies
52
+ shell: bash -l {0}
53
+ run: |
54
+ apt-get -qq update
55
+ export DEBIAN_FRONTEND=noninteractive
56
+ apt-get install -y tzdata
57
+ apt-get install -y \
58
+ texlive-latex-recommended \
59
+ texlive-latex-extra \
60
+ texlive-fonts-recommended \
61
+ texlive-fonts-extra \
62
+ texlive-xetex \
63
+ latexmk \
64
+ xindy
65
- name: Build HTML
66
shell: bash -l {0}
67
0 commit comments