From 8b6726e05e6e80b0504649ccf8e84dd60f96605f Mon Sep 17 00:00:00 2001 From: mattmcclure-dw <73489204+mattmcclure-dw@users.noreply.github.com> Date: Thu, 25 Feb 2021 13:46:38 -0500 Subject: [PATCH] (from getambassador.io) initial --- quick-start/qs-python-fastapi.md | 4 +++- quick-start/qs-python.md | 6 ++++-- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/quick-start/qs-python-fastapi.md b/quick-start/qs-python-fastapi.md index 86514a7556..0c0ab5b502 100644 --- a/quick-start/qs-python-fastapi.md +++ b/quick-start/qs-python-fastapi.md @@ -112,7 +112,9 @@ You will now download the repo containing the services' code and run the DataPro `cd edgey-corp-python-fastapi/DataProcessingService/` 3. Install the dependencies and start the Python server. You may need to use `pip3` and `python3` if you have Python 3 installed. -`pip install fastapi uvicorn requests && python app.py` +`pip install fastapi uvicorn requests && python app.py` +OR +`pip3 install fastapi uvicorn requests && python3 app.py` ``` $ pip install fastapi uvicorn requests && python app.py diff --git a/quick-start/qs-python.md b/quick-start/qs-python.md index cfa1e6836a..dc2d772d07 100644 --- a/quick-start/qs-python.md +++ b/quick-start/qs-python.md @@ -121,8 +121,10 @@ You will now download the repo containing the services' code and run the DataPro 2. Change into the repo directory, then into DataProcessingService: `cd edgey-corp-python/DataProcessingService/` -3. Install the dependencies and start the Python server. You may need to use `pip3` and `python3` if you have Python 3 installed. -`pip install flask requests && python app.py` +3. Install the dependencies and start the Python server. You may need to use `pip3` and `python3` if you have Python 3 installed. +`pip install fastapi uvicorn requests && python app.py` +OR +`pip3 install fastapi uvicorn requests && python3 app.py` ``` $ pip install flask requests && python app.py