Spaces:
Running
Running
MilesCranmer
commited on
Commit
•
a2ee961
1
Parent(s):
cbff360
Include docker in installation instructions
Browse files
README.md
CHANGED
@@ -73,9 +73,9 @@ python interface.
|
|
73 |
|
74 |
<div align="center">
|
75 |
|
76 |
-
| pip - **recommended** <br> (works everywhere) | conda <br>(Linux and Intel-based macOS) |
|
77 |
-
|
78 |
-
| 1. [Install Julia](https://julialang.org/downloads/)<br>2. Then, run: `pip install -U pysr`<br>3. Finally, to install Julia packages:<br>`python -c 'import pysr; pysr.install()'` | `conda install -c conda-forge pysr` |
|
79 |
|
80 |
</div>
|
81 |
|
@@ -261,7 +261,7 @@ You can also test out PySR in Docker, without
|
|
261 |
installing it locally, by running the following command in
|
262 |
the root directory of this repo:
|
263 |
```bash
|
264 |
-
docker build -t pysr
|
265 |
```
|
266 |
This builds an image called `pysr` for your system's architecture,
|
267 |
which also contains IPython.
|
|
|
73 |
|
74 |
<div align="center">
|
75 |
|
76 |
+
| pip - **recommended** <br> (works everywhere) | conda <br>(Linux and Intel-based macOS) | docker <br>(if all else fails) |
|
77 |
+
|---|---|---|
|
78 |
+
| 1. [Install Julia](https://julialang.org/downloads/)<br>2. Then, run: `pip install -U pysr`<br>3. Finally, to install Julia packages:<br>`python -c 'import pysr; pysr.install()'` | `conda install -c conda-forge pysr` | 1. Clone this repo.<br>2. `docker build -t pysr .`<br>Run with:<br>`docker run -it --rm pysr ipython`
|
79 |
|
80 |
</div>
|
81 |
|
|
|
261 |
installing it locally, by running the following command in
|
262 |
the root directory of this repo:
|
263 |
```bash
|
264 |
+
docker build -t pysr .
|
265 |
```
|
266 |
This builds an image called `pysr` for your system's architecture,
|
267 |
which also contains IPython.
|