From 1841e83b428d34d900b1deaa8bbf8da25837d56e Mon Sep 17 00:00:00 2001 From: Harris Boyce <63736287+harris-boyce@users.noreply.github.com> Date: Tue, 25 May 2021 07:38:35 -0400 Subject: [PATCH] Correct incorrect python command Pipeline scripts must be executed as modules --- docs/development_setup.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/development_setup.md b/docs/development_setup.md index 1c8c2479..0834cb2e 100644 --- a/docs/development_setup.md +++ b/docs/development_setup.md @@ -23,7 +23,7 @@ Install the required Python modules. [`install_requirements.sh`](https://github. To run your local ML pipeline code on Azure ML, run a command such as the following (in bash, all on one line): ``` -export BUILD_BUILDID=$(uuidgen); python ml_service/pipelines/diabetes_regression_build_train_pipeline.py && python ml_service/pipelines/run_train_pipeline.py +export BUILD_BUILDID=$(uuidgen); python -m ml_service.pipelines.diabetes_regression_build_train_pipeline && python -m ml_service.pipelines.run_train_pipeline ``` BUILD_BUILDID is a variable used to uniquely identify the ML pipeline between the