MilesCranmer commited on
Commit
fadd796
1 Parent(s): 155233f

Update docs on installation

Browse files
Files changed (1) hide show
  1. docs/start.md +5 -11
docs/start.md CHANGED
@@ -7,20 +7,14 @@ Install Julia - see [downloads](https://julialang.org/downloads/), and
7
  then instructions for [mac](https://julialang.org/downloads/platform/#macos)
8
  and [linux](https://julialang.org/downloads/platform/#linux_and_freebsd).
9
  (Don't use the `conda-forge` version; it doesn't seem to work properly.)
10
- Then, at the command line,
11
- install the `Optim` and `SpecialFunctions` packages via:
12
 
 
13
  ```bash
14
- julia -e 'import Pkg; Pkg.add("Optim"); Pkg.add("SpecialFunctions")'
15
- ```
16
-
17
- For python, you need to have Python 3, numpy, sympy, and pandas installed.
18
-
19
- You can install this package from PyPI with:
20
-
21
- ```bash
22
- pip install pysr
23
  ```
 
 
24
 
25
  ## Quickstart
26
 
 
7
  then instructions for [mac](https://julialang.org/downloads/platform/#macos)
8
  and [linux](https://julialang.org/downloads/platform/#linux_and_freebsd).
9
  (Don't use the `conda-forge` version; it doesn't seem to work properly.)
 
 
10
 
11
+ You can install PySR with:
12
  ```bash
13
+ pip3 install pysr
14
+ python3 -c 'import pysr; pysr.install()'
 
 
 
 
 
 
 
15
  ```
16
+ The second line will install and update the required Julia packages, including
17
+ `PyCall.jl`.
18
 
19
  ## Quickstart
20