From 8d26aa61eb22b1463da027d227a98cd1f5395aa4 Mon Sep 17 00:00:00 2001 From: Krishna Kalyan Date: Wed, 6 Jul 2022 16:11:05 +0200 Subject: [PATCH] Improve installation steps This step is not required `pip install -e .`. The link below does not contain `setup.py` instructions. https://github.com/Lightning-AI/grid-tutorials/tree/main/getting-started --- docs/getting-started/typical-workflow-web-user.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/docs/getting-started/typical-workflow-web-user.md b/docs/getting-started/typical-workflow-web-user.md index c6098583..2cfcf11b 100644 --- a/docs/getting-started/typical-workflow-web-user.md +++ b/docs/getting-started/typical-workflow-web-user.md @@ -177,16 +177,14 @@ Install requirements + project ```yaml cd grid-tutorials/getting-started - pip install -r requirements.txt -pip install -e . ``` now run the following command to train a resnet50 on 2 GPUs ```bash python flash-image-classifier.py \ - --data_dir /datastores/cifar5 + --data_dir /datastores/cifar5 \ --gpus 2 \ --epochs 4 ```