diff options
-rw-r--r-- | pydis_site/apps/content/resources/guides/python-guides/windows/common-issues.md | 2 |
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`. |