MilesCranmer commited on
Commit
a6da5af
1 Parent(s): ffcddde

Update conda install instructions

Browse files
Files changed (1) hide show
  1. README.md +2 -5
README.md CHANGED
@@ -74,15 +74,12 @@ python interface.
74
 
75
  <div align="center">
76
 
77
- | pip (macOS, Linux, Windows) | conda (macOS - only Intel, Linux) |
78
  |---|---|
79
- | 1. Install Julia manually (see [downloads](https://julialang.org/downloads/))<br>2. `pip install pysr`<br>3. `python -c 'import pysr; pysr.install()'` | 1. `conda install -c conda-forge pysr`<br>2. `python -c 'import pysr; pysr.install()'`|
80
 
81
  </div>
82
 
83
- This last step will install and update the required Julia packages, including
84
- `PyCall.jl`.
85
-
86
  Common issues tend to be related to Python not finding Julia.
87
  To debug this, try running `python -c 'import os; print(os.environ["PATH"])'`.
88
  If none of these folders contain your Julia binary, then you need to add Julia's `bin` folder to your `PATH` environment variable.
 
74
 
75
  <div align="center">
76
 
77
+ | pip <br> (works everywhere) | conda <br>(Linux and Intel-based macOS) |
78
  |---|---|
79
+ | 1. [Install Julia](https://julialang.org/downloads/)<br>2. Then, run: `pip install pysr`<br>3. Finally, to install Julia packages:<br>`python -c 'import pysr; pysr.install()'` | `conda install -c conda-forge pysr` |
80
 
81
  </div>
82
 
 
 
 
83
  Common issues tend to be related to Python not finding Julia.
84
  To debug this, try running `python -c 'import os; print(os.environ["PATH"])'`.
85
  If none of these folders contain your Julia binary, then you need to add Julia's `bin` folder to your `PATH` environment variable.