Skip to content

Commit f5d4a46

Browse files
committed
instruction updates
1 parent ec1bd5f commit f5d4a46

File tree

4 files changed

+15
-11
lines changed

4 files changed

+15
-11
lines changed

Diff for: README.md

+14-1
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,19 @@ sudo python setup.py install
3030
cd ..
3131
```
3232

33+
Compile the lexer:
34+
```
35+
cd lexer
36+
sudo python setup.py install
37+
cd ..
38+
```
39+
40+
Install the PGFPlots.jl package:
41+
```julia
42+
using Pkg
43+
Pkg.add("PGFPlots")
44+
```
45+
3346
Install `pdf2svg`, which is used by PGFPlots (we assume Ubuntu - other operating systems may install pdf2svg differently):
3447
```
3548
sudo apt-get install pdf2svg
@@ -40,7 +53,7 @@ Install [pgfplots](https://ctan.org/pkg/pgfplots).
4053
Install the Weave.jl package:
4154
```julia
4255
using Pkg
43-
Pkg.add("Weave.jl")
56+
Pkg.add("Weave")
4457
```
4558

4659
Update the texlive manager and install pythontex:

Diff for: book.pdf

1 Byte
Binary file not shown.

Diff for: chapter/introduction.tex

+1-1
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ \section{Using Julia}
8181
\end{tikzpicture}
8282
\caption{
8383
\label{fig:sample_tikzpicture}
84-
A figure made using the \texttt{tikzpicture} environment.
84+
A figure made using a \texttt{tikzpicture} environment.
8585
}
8686
\end{figure}
8787

Diff for: support_code.jl

-9
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,5 @@
11
# Any imports you need go here.
22
using PGFPlots
3-
using TikzPictures
4-
using LinearAlgebra
5-
using Distributions
6-
using Random
7-
using StatsBase
8-
using Vec
9-
using Printf
10-
11-
import Base: rand, <, ==
123

134
include("all_algorithm_blocks.jl")
145

0 commit comments

Comments
 (0)