Skip to content

Commit 29a2834

Browse files
authored
Update README with conda installation (#26)
* Update README with conda installation * Readd pip install command
1 parent 489eb86 commit 29a2834

File tree

1 file changed

+13
-5
lines changed

1 file changed

+13
-5
lines changed

README.md

Lines changed: 13 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,24 @@ PyMC-BART extends [PyMC](https://github.com/pymc-devs/pymc) probabilistic progra
77

88
## Installation
99

10-
PyMC-BART requires a working Python interpreter (3.8+). We recommend installing Python and key numerical libraries using the [Anaconda Distribution](https://www.anaconda.com/products/individual#Downloads), which has one-click installers available on all major platforms.
10+
PyMC-BART is available on Conda-Forge. To set up a suitable Conda environment, run
1111

12-
Assuming a standard Python environment is installed on your machine (including pip), PyMC-BART itself can be installed in one line using pip:
12+
```bash
13+
conda create --name=pymc-bart --channel=conda-forge pymc-bart
14+
conda activate pymc-bart
15+
```
1316

14-
pip install pymc-bart
17+
Alternatively, it can be installed with
1518

16-
Alternatively, if you want the bleeding edge version of the package you can install from GitHub:
19+
```bash
20+
pip install pymc-bart
21+
```
1722

18-
pip install git+https://github.com/pymc-devs/pymc-bart.git
23+
In case you want to upgrade to the bleeding edge version of the package you can install from GitHub:
1924

25+
```bash
26+
pip install git+https://github.com/pymc-devs/pymc-bart.git
27+
```
2028

2129
## Contributions
2230
PyMC-BART is a community project and welcomes contributions.

0 commit comments

Comments
 (0)