You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: uni-install.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -18,20 +18,20 @@ That's enough to produce HTML reports, but if you'd like to produce `.pdf` repor
18
18
The best way to install `latex` is to use Homebrew to grab `basictex`:
19
19
20
20
```
21
-
$ brew install basictex
21
+
brew install basictex
22
22
```
23
23
24
24
Then use `ls /usr/local/Caskroom/basictex/` to see the actual directory the package resides in. Finally use the `open` command to run that Mac OS X package installer, for example:
25
25
26
26
```
27
-
$ open /usr/local/Caskroom/basictex/2017.0607/mactex-basictex-20170607.pkg
27
+
open /usr/local/Caskroom/basictex/2017.0607/mactex-basictex-20170607.pkg
28
28
```
29
29
30
30
### For Debian/Ubuntu
31
31
We recommend using `sudo` to install the following packages:
32
32
33
33
```
34
-
$ sudo apt-get install texlive-latex-base \
34
+
sudo apt-get install texlive-latex-base \
35
35
texlive-fonts-recommended \
36
36
texlive-fonts-extra \
37
37
texlive-latex-extra \
@@ -50,4 +50,4 @@ Once the installer has completed, you should then be able to produce `.pdf` repo
50
50
51
51
```RuntimeError: Python is not installed as a framework. The Mac OS X backend will not be able to function correctly if Python is not installed as a framework.```
52
52
53
-
In this case, run the following: `$ echo "backend: TkAgg" >> ~/.matplotlib/matplotlibrc`
53
+
In this case, run the following: `echo "backend: TkAgg" >> ~/.matplotlib/matplotlibrc`
0 commit comments