From d474e2417f48fd5818900acc75ef4d5b03a954b2 Mon Sep 17 00:00:00 2001 From: Guillaume Cerutti <guillaume.cerutti@inria.fr> Date: Mon, 3 Apr 2023 16:21:09 +0200 Subject: [PATCH] add readme --- README.md | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..c3097af --- /dev/null +++ b/README.md @@ -0,0 +1,26 @@ +# Nuclei signal quantification + +## Installation + +### Create a new `conda` environment + +* Using the `environment.yml` file, create a new environment with all the necessary dependencies: + +```bash +cd nuclei_quantification +conda env create -f environment.yml +``` + +## Usage + +* Activate the environment: + +```bash +conda activate nuclei-quantification +``` + +* Launch the Notebook server + +```bash +jupyter notebook +``` -- GitLab