From c73637a7e7d716a269d90409705e21d5d7dadf69 Mon Sep 17 00:00:00 2001 From: Hao-Wei Pang <45482070+hwpang@users.noreply.github.com> Date: Tue, 30 Jul 2024 09:56:53 -0400 Subject: [PATCH] Update setup_poc.ipynb Add job templates arg to avoid "Unable to handle command: config due to: job_templates_dir='None', it is not a directory" error Use full name --- examples/tutorials/setup_poc.ipynb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/tutorials/setup_poc.ipynb b/examples/tutorials/setup_poc.ipynb index d1a1aa0007..d07c579882 100644 --- a/examples/tutorials/setup_poc.ipynb +++ b/examples/tutorials/setup_poc.ipynb @@ -81,12 +81,12 @@ "If you prefer not to use environment variable, you can do the followings: \n", "\n", "```\n", - "! nvflare config -pw /tmp/nvflare/poc\n", + "! nvflare config -pw /tmp/nvflare/poc --job_templates_dir ../../job_templates\n", "\n", "```\n", "or \n", "```\n", - "! nvflare config -poc_workspace_dir /tmp/nvflare/poc\n", + "! nvflare config --poc_workspace_dir /tmp/nvflare/poc --job_templates_dir ../../job_templates\n", "```" ] }, @@ -99,7 +99,7 @@ }, "outputs": [], "source": [ - "! nvflare config -pw /tmp/nvflare/poc" + "! nvflare config -pw /tmp/nvflare/poc --job_templates_dir ../../job_templates" ] }, {