install_windows: Update and clarify Python versions

This commit is contained in:
2023-03-15 08:33:26 +01:00
parent b050aaeb68
commit feca77cf8b

View File

@ -23,11 +23,12 @@ Install Python
-------------- --------------
Download the latest **Python 3** installer from https://www.python.org, Download the latest **Python 3** installer from https://www.python.org,
3.5.1, as of 2016-01-26) and run it to install Python. 3.11.2, as of 2023-03-14) and run it to install Python.
Installing Python is mostly clicking next, but in the next screen remember Installing Python is mostly clicking next, but in the next screen remember
the destination directory where you installed Python. These instructions the destination directory where you installed Python. These instructions
refer to it as ``C:\Python35\`` which is the current name on 2016-01-26. refer to it as ``C:\Python311\`` which is the current name on 2023-03-14.
If you downloaded a newer version, replace the version number with the new one.
Then you are asked to customize your installation. Click the drive on left Then you are asked to customize your installation. Click the drive on left
side of "Python" text and select "Entire feature will be installed on side of "Python" text and select "Entire feature will be installed on
@ -38,7 +39,7 @@ Now Python installs itself which may take several minutes.
Python should be now installed and you can check that the "python" command Python should be now installed and you can check that the "python" command
points to correct python. Open ``cmd.exe`` (press the Windows button on points to correct python. Open ``cmd.exe`` (press the Windows button on
your keyboard and type "cmd.exe") and run ``where python`` your keyboard and type "cmd.exe") and run ``where python``
and the toppernmost entry should be ``C:\Python35\python.exe``. and the toppernmost entry should be ``C:\Python311\python.exe``.
Install Limnoria Install Limnoria
--------------- ---------------
@ -73,7 +74,7 @@ directory::
and from within it run ``supybot-wizard``:: and from within it run ``supybot-wizard``::
python3 C:\Python35\Scripts\supybot-wizard python3 C:\Python311\Scripts\supybot-wizard
which will walk you through a series of questions to generate the bot which will walk you through a series of questions to generate the bot
config file. config file.
@ -93,7 +94,7 @@ directories?* question.)
Now to start the bot, run, still from within the Now to start the bot, run, still from within the
``C:\users\<username>\runbot`` directory:: ``C:\users\<username>\runbot`` directory::
python3 C:\Python35\Scripts\supybot yourbotnick.conf python3 C:\Python311\Scripts\supybot yourbotnick.conf
And watch the magic! And watch the magic!