aboutsummaryrefslogtreecommitdiffstats
path: root/pydis_site
diff options
context:
space:
mode:
authorGravatar discretegames <[email protected]>2022-11-08 18:17:18 -0800
committerGravatar GitHub <[email protected]>2022-11-08 18:17:18 -0800
commitc6147f9837416271bb0087b424202b8fb684f6c9 (patch)
treef1cf9927a55939123b37399c5802a0769d330476 /pydis_site
parentUpdate pydis_site/apps/content/resources/guides/python-guides/windows/common-... (diff)
Update pydis_site/apps/content/resources/guides/python-guides/windows/common-issues.md
Co-authored-by: Amrou Bellalouna <[email protected]>
Diffstat (limited to 'pydis_site')
-rw-r--r--pydis_site/apps/content/resources/guides/python-guides/windows/common-issues.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/pydis_site/apps/content/resources/guides/python-guides/windows/common-issues.md b/pydis_site/apps/content/resources/guides/python-guides/windows/common-issues.md
index 0d0d2a70..2245553b 100644
--- a/pydis_site/apps/content/resources/guides/python-guides/windows/common-issues.md
+++ b/pydis_site/apps/content/resources/guides/python-guides/windows/common-issues.md
@@ -82,7 +82,7 @@ so try to actually run your code the way it is to ensure that it actually errors
##### I installed the module using pip from the command line
- > Run `pip -V` and look at the path returned it should be in the form `<PATH_TO_PYTHON>\Lib\site-packages\pip`.
+ > Run `pip -V` and look at the path it returned, which should be in the form `<PATH_TO_PYTHON>\Lib\site-packages\pip`.
>
> Then put `import sys;print(sys.executable);sys.exit(0);` at the top (above imports!) of your python file, and run
> it. The result should be in the form `<PATH_TO_PYTHON>\python.exe`.