Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated python readme #36

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions client-samples/python/rest/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ You can use `config-example.json` as a starting point.
It is important to ensure that you have Python 3.9 or greater on your machine. To check if Python is on your machine perform the following:

* Windows: `python --version`
* Mac/Linux: `python --version`
* Mac/Linux: `python --version` # if the version is Python 2, then use `python3` instead

If the command is not recognised then you will need to install Python on your machine.
This can be done by visiting <https://www.python.org/downloads/> where you can follow the instructions to download and install python.
Expand All @@ -60,7 +60,7 @@ Mac/Linux:
python -m venv venv
. venv/bin/activate

python -m pip install --upgrade pip
pip install --upgrade pip
pip install -r requirements.txt
pip install -r dev-requirements.txt

Expand Down
4 changes: 2 additions & 2 deletions client-samples/python/websockets/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ websocket.enableTrace(True)
It is important to ensure that you have Python 3.9 or greater on your machine. To check if Python is on your machine perform the following:

* Windows: `python --version`
* Mac/Linux: `python --version`
* Mac/Linux: `python --version` # if the version is Python 2, then use `python3` instead

If the command is not recognised then you will need to install Python on your machine.
This can be done by visiting <https://www.python.org/downloads/> where you can follow the instructions to download and install python.
Expand All @@ -68,7 +68,7 @@ Mac/Linux:
python -m venv venv
. venv/bin/activate

python -m pip install --upgrade pip
pip install --upgrade pip
pip install -r requirements.txt
pip install -r dev-requirements.txt
python client.py
Expand Down