From 9a363f084cd00ee2cee68307242830763ef80edd Mon Sep 17 00:00:00 2001 From: Sierra Guequierre Date: Thu, 14 Sep 2023 16:11:10 -0400 Subject: [PATCH] Apply suggestions from code review Co-authored-by: Naomi Pentrel <5212232+npentrel@users.noreply.github.com> --- docs/program/python-venv.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/program/python-venv.md b/docs/program/python-venv.md index a7dda5b045..23e4e19233 100644 --- a/docs/program/python-venv.md +++ b/docs/program/python-venv.md @@ -52,7 +52,7 @@ pip3 install viam-sdk This will install Viam and all required dependencies. Should you need to install your own requirements, be sure to do so in this virtual environment. -You can [make a](https://openclassrooms.com/en/courses/6900846-set-up-a-python-environment/6990546-manage-virtual-environments-using-requirements-files) requirements.txt and include all necessary packages within, then install the requirements for your client application using `pip install -r requirements.txt`. +You can [create a](https://openclassrooms.com/en/courses/6900846-set-up-a-python-environment/6990546-manage-virtual-environments-using-requirements-files) requirements.txt with all the packages you need and then install the requirements for your client application by running `pip install -r requirements.txt`. ## Setup your IDE