From cc024ef83286d656c5df204722be9132924fb7a5 Mon Sep 17 00:00:00 2001 From: Yoshitaka Inoue <8393063+inoue0426@users.noreply.github.com> Date: Fri, 30 Aug 2024 00:22:45 -0400 Subject: [PATCH] Update README.md --- README.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 15061a3..93e8f60 100644 --- a/README.md +++ b/README.md @@ -15,10 +15,8 @@ This quick start guide demonstrates how to run drGAT predictions on both CPU and ```shell git clone git@github.com:inoue0426/drGAT.git cd drGAT -conda env create -f environment.yml -conda activate drGAT -python -m ipykernel install --user --name=drGAT -jupyter notebook --port=9999 +docker build -t drgat:latest . +docker run -it -p 9999:9999 drgat:latest ``` Then access to http://localhost:9999/notebooks/Tutorial.ipynb and run all cells. @@ -52,13 +50,15 @@ If you want to re-train model, we recommend using GPU. --- -## Installation using Docker +## Installation using Conda ```shell git clone git@github.com:inoue0426/drGAT.git cd drGAT -docker build -t drgat:latest . -docker run -it -p 9999:9999 drgat:latest +conda env create -f environment.yml +conda activate drGAT +python -m ipykernel install --user --name=drGAT +jupyter notebook --port=9999 ``` Then access to http://localhost:9999/notebooks/Tutorial.ipynb