From ab73121401e712521d01394ed2e3ef2d96f43817 Mon Sep 17 00:00:00 2001 From: Jiajie Zhong Date: Thu, 28 Jul 2022 21:40:20 +0800 Subject: [PATCH] [python] Add directly install without clone source code (#11179) Co-authored-by: kezhenxu94 (cherry picked from commit 9e692f919ac9f3e1aa483a9414880573ee4248fa) --- .../pydolphinscheduler/docs/source/start.rst | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/dolphinscheduler-python/pydolphinscheduler/docs/source/start.rst b/dolphinscheduler-python/pydolphinscheduler/docs/source/start.rst index 6bc73f272..270b5b855 100644 --- a/dolphinscheduler-python/pydolphinscheduler/docs/source/start.rst +++ b/dolphinscheduler-python/pydolphinscheduler/docs/source/start.rst @@ -86,6 +86,14 @@ which we hold in GitHub After you installed *PyDolphinScheduler*, please remember `start Python Gateway Service`_ which waiting for *PyDolphinScheduler*'s workflow definition require. +Above command will clone whole dolphinscheduler source code to local, maybe you want to install latest pydolphinscheduler +package directly and do not care about other code(including Python gateway service code), you can execute command + +.. code-block:: bash + + # Must escape the '&' character by adding '\' + pip install -e "git+https://github.com/apache/dolphinscheduler.git#egg=apache-dolphinscheduler&subdirectory=dolphinscheduler-python/pydolphinscheduler" + Start Python Gateway Service ---------------------------- -- GitLab