Skip to content

Commit 8a27ce1

Browse files
Merge branch 'fix/pymcs/module-imports' into main
2 parents 18cf6c2 + 26cb712 commit 8a27ce1

File tree

1 file changed

+10
-3
lines changed

1 file changed

+10
-3
lines changed

README.md

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,23 +8,30 @@ In the end, the application needs to merge different .yaml files (pyMc-/user Fil
88

99
## Installation
1010

11+
Start a new virtual environment with micromamba (conda/mamba/or similar).
12+
13+
```bash
14+
micromamba create -n pymc-server -c conda-forge python=3.12
15+
micromamba activate pymc-server
16+
```
17+
1118
Install this library from PiPy `pip3 install pymc-server`
1219

1320
If you want to install this library from source:
1421
```bash
1522
git clone https://github.com/pymc-dev/PyMC-Server
1623
cd PyMC-Server
1724

18-
pip3 install .
19-
# run 'pip3 install -e .' if you want to be able to edit the code
25+
pip3 install . # run `pip3 install -e .` if you want to be able to edit the code
2026
```
2127

2228
### Setting up a cloud: Google Cloud
2329

2430
1. Run `pymcs check` to see if you already have credentials setup. If you see a green checkmark for GCP (Google Cloud Platform), skip to the next section
2531
2. Install the google cloud SDK and authenticate.
2632
```bash
27-
conda install -c conda-forge google-cloud-sdk
33+
# inside your activated environment
34+
micromamba install -c conda-forge google-cloud-sdk
2835
gcloud init
2936

3037
# Run this if you don't have a credentials file.

0 commit comments

Comments
 (0)