From 6cccc6bbef003423ea8c5af56a844624731ac91d Mon Sep 17 00:00:00 2001 From: Cal Date: Sun, 19 Apr 2026 16:57:51 -0600 Subject: [PATCH] link to python on windows FAQ --- docs/source/Setup/Installation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/Setup/Installation.md b/docs/source/Setup/Installation.md index 7c8f68e278..2116ba9d16 100644 --- a/docs/source/Setup/Installation.md +++ b/docs/source/Setup/Installation.md @@ -41,7 +41,7 @@ You will need to install Evennia to a *python virtual environment*, so the first $ python -m venv evenv ```{note} -**Windows Only**: The recommended way to run python from the Windows command line is the `py` launcher command, so you will most likely want to use `py` instead of `python` here and for the rest of the instructions. However, you can also directly reference the python version. Consult the official Python for Windows documentation for more information. +**Windows Only**: The recommended way to run python from the Windows command line is the `py` launcher command, so you will most likely want to use `py` instead of `python` here and for the rest of the instructions. However, you can also directly reference the python version. Consult the official [Python on Windows](https://docs.python.org/3/faq/windows.html) documentation for more information. ``` This will create a new directory named `evenv` containing the *virtual environment* - a set of python packages and executables installed locally, rather than system-wide. Doing this prevents permissions and conflict issues later.