Skip to content

Commit

Permalink
Add postgresql installation instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
milanmlft committed Dec 4, 2023
1 parent 46f5b3c commit eb45f81
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions pixl_ehr/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,24 @@ postgres database.

## Installation

First, make sure you have `postgresql` installed on your system.

On macOS:

```bash
brew install postgresql
```

On Ubuntu:

```bash
sudo apt install postgresql
```

On Windows, follow [these instructions](https://www.postgresqltutorial.com/postgresql-getting-started/install-postgresql/).

Then install the Python dependencies with

```bash
pip install -e ../pixl_core/ .
python -m spacy download en_core_web_lg # Download spacy language model for deidentification
Expand Down

0 comments on commit eb45f81

Please sign in to comment.