From ebe7050dd0b1a62843ce2cc06f7627ce904efb98 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joan=20H=C3=A9risson?= <joan.herisson@univ-evry.fr> Date: Mon, 24 Jan 2022 16:12:35 +0100 Subject: [PATCH] Create INSTALL.md --- INSTALL.md | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 INSTALL.md diff --git a/INSTALL.md b/INSTALL.md new file mode 100644 index 0000000..b4a477d --- /dev/null +++ b/INSTALL.md @@ -0,0 +1,22 @@ +# INSTALL +## Docker +Install first [Docker](https://docs.docker.com/get-docker/) + +Then, run: `docker build -t 3dna .` + +## Conda +Install first [Miniconda](https://docs.conda.io/en/latest/miniconda.html). + +Then, run: `conda env create -f environment.yml` + +# RUN +## Docker +`docker run --rm -v $PWD:$PWD -w $PWD 3dna python Main.py` + +## Conda +`conda run -n 3dna python Main.py` + +or +``` +conda activate 3dna +python Main.py -- GitLab