aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar discretegames <[email protected]>2022-11-12 18:37:38 -0800
committerGravatar discretegames <[email protected]>2022-11-12 18:37:38 -0800
commitc3bb0b5b51eae840a34a70443c5dcc5ffa97f23a (patch)
tree581168576f359db7fe30eaf1ce5ff5c3aad22e21
parentMerge branch 'add-windows-guide' of https://github.com/discretegames/python-d... (diff)
NOT back to Not and wrapped things to 120chars
-rw-r--r--pydis_site/apps/content/resources/guides/python-guides/windows/common-issues.md3
-rw-r--r--pydis_site/apps/content/resources/guides/python-guides/windows/microsoft-store.md2
-rw-r--r--pydis_site/apps/content/resources/guides/python-guides/windows/putting-python-on-path.md16
3 files changed, 11 insertions, 10 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 878ff20c..65633609 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
@@ -90,7 +90,8 @@ with `py`. See [this guide](../installing-and-using-python/#the-py-launcher) for
##### I installed the module using pip from the command line
- > Run `pip -V` and look at the path it returned, which 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`.
diff --git a/pydis_site/apps/content/resources/guides/python-guides/windows/microsoft-store.md b/pydis_site/apps/content/resources/guides/python-guides/windows/microsoft-store.md
index 8b496779..0a752fb3 100644
--- a/pydis_site/apps/content/resources/guides/python-guides/windows/microsoft-store.md
+++ b/pydis_site/apps/content/resources/guides/python-guides/windows/microsoft-store.md
@@ -1,5 +1,5 @@
---
-title: Why NOT to Install Python from the Microsoft Store
+title: Why Not to Install Python from the Microsoft Store
description: The drawbacks of installing the Microsoft Store versions of Python
icon: fab fa-windows
---
diff --git a/pydis_site/apps/content/resources/guides/python-guides/windows/putting-python-on-path.md b/pydis_site/apps/content/resources/guides/python-guides/windows/putting-python-on-path.md
index 09c6f9da..18a3d787 100644
--- a/pydis_site/apps/content/resources/guides/python-guides/windows/putting-python-on-path.md
+++ b/pydis_site/apps/content/resources/guides/python-guides/windows/putting-python-on-path.md
@@ -115,8 +115,8 @@ installed](https://pypi.org/project/pyinstaller/) it) now work for you!
Hopefully things are indeed working, however, it is possible that, due to having multiple Python versions, or other
mixups, the commands are still not behaving how you expect. If so, read on to learn how to manually edit the Path. (If
-you already did that, open a help channel on the [Python Discord server](https://discord.com/invite/python) explaining everything you've tried so far, and someone
-will hopefully be able to help.)
+you already did that, open a help channel on the [Python Discord server](https://discord.com/invite/python) explaining
+everything you've tried so far, and someone will hopefully be able to help.)
## Advanced Method: Manually edit the Path
@@ -155,9 +155,9 @@ Again, the Path lookup order is:
### Adding Python to your Path
-Here only the common case of adding Python and the Python Scripts directory to the Windows Path is detailed. However, knowing
-how to manually modify the Path is handy beyond just Python for whenever you need to change or debug which programs run
-on the command line in Windows. (The less customizable but [safer method is
+Here only the common case of adding Python and the Python Scripts directory to the Windows Path is detailed. However,
+knowing how to manually modify the Path is handy beyond just Python for whenever you need to change or debug which
+programs run on the command line in Windows. (The less customizable but [safer method is
above](#safe-method-let-the-installer-add-python-to-path) if you missed it.)
Follow these steps to add Python to the Path. **You will need administrator privileges on your computer.**
@@ -209,9 +209,9 @@ Follow these steps to add Python to the Path. **You will need administrator priv
(Don't worry if your variables or Path contents differ a bit from those shown.)
-6. Now a third window opens and this is where the Path is actually edited. It shows the ordered list of the folders on the
- Path and you can select the entries, edit them, reorder them, make new ones, delete them and so on. (Don't delete
- any unless you know what you're doing!)
+6. Now a third window opens and this is where the Path is actually edited. It shows the ordered list of the folders on
+ the Path and you can select the entries, edit them, reorder them, make new ones, delete them and so on. (Don't
+ delete any unless you know what you're doing!)
We want to add the Python executable path we found in step 1 as a new entry, so click "New" and paste in the path.