MilesCranmer commited on
Commit
d44e449
1 Parent(s): 0a59d77

Update Julia advice to include precompilation

Browse files
Files changed (1) hide show
  1. README.md +3 -2
README.md CHANGED
@@ -47,10 +47,11 @@ then instructions for [mac](https://julialang.org/downloads/platform/#macos)
47
  and [linux](https://julialang.org/downloads/platform/#linux_and_freebsd).
48
  (Don't use the `conda-forge` version; it doesn't seem to work properly.)
49
  Then, at the command line,
50
- install the `Optim` and `SpecialFunctions` packages via:
 
51
 
52
  ```bash
53
- julia -e 'import Pkg; Pkg.add("Optim"); Pkg.add("SpecialFunctions")'
54
  ```
55
 
56
  For python, you need to have Python 3, numpy, sympy, and pandas installed.
 
47
  and [linux](https://julialang.org/downloads/platform/#linux_and_freebsd).
48
  (Don't use the `conda-forge` version; it doesn't seem to work properly.)
49
  Then, at the command line,
50
+ install and precompile the `Optim` and `SpecialFunctions`
51
+ packages via:
52
 
53
  ```bash
54
+ julia -e 'using Pkg; pkg"add Optim; add SpecialFunctions; precompile;"'
55
  ```
56
 
57
  For python, you need to have Python 3, numpy, sympy, and pandas installed.