From 3f75c7baba1f55d0073f8595848e7abfe30a4e1b Mon Sep 17 00:00:00 2001 From: Milan Malfait Date: Mon, 4 Dec 2023 12:19:04 +0000 Subject: [PATCH] Add postgresql installation instructions (#163) --- pixl_ehr/README.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/pixl_ehr/README.md b/pixl_ehr/README.md index 0670b55b8..26a5e5fb8 100644 --- a/pixl_ehr/README.md +++ b/pixl_ehr/README.md @@ -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