From f5c003142d6cb605ac5e2daac52dd00e4852e9b5 Mon Sep 17 00:00:00 2001 From: Evennia docbuilder action Date: Sat, 5 Feb 2022 15:44:42 +0000 Subject: [PATCH] Updated HTML docs --- docs/1.0-dev/.buildinfo | 2 +- .../Setup/Installation-Troubleshooting.html | 23 +++++++++++++++++ .../Setup/Installation-Troubleshooting.md.txt | 22 ++++++++++++++++ .../api/evennia.commands.default.account.html | 4 +-- ...evennia.commands.default.batchprocess.html | 4 +-- .../evennia.commands.default.building.html | 12 ++++----- .../api/evennia.commands.default.comms.html | 8 +++--- .../api/evennia.commands.default.general.html | 12 ++++----- .../api/evennia.commands.default.tests.html | 2 +- .../evennia.commands.default.unloggedin.html | 16 ++++++------ ....base_systems.email_login.email_login.html | 16 ++++++------ ...b.base_systems.ingame_python.commands.html | 4 +-- ...systems.mux_comms_cmds.mux_comms_cmds.html | 8 +++--- ...rib.full_systems.evscaperoom.commands.html | 24 +++++++++--------- ...trib.grid.extended_room.extended_room.html | 4 +-- ...evennia.contrib.rpg.rpsystem.rpsystem.html | 8 +++--- ...ntrib.tutorials.red_button.red_button.html | 16 ++++++------ ...trib.tutorials.tutorial_world.objects.html | 12 ++++----- ...ontrib.tutorials.tutorial_world.rooms.html | 8 +++--- docs/1.0-dev/api/evennia.utils.eveditor.html | 4 +-- docs/1.0-dev/api/evennia.utils.evmenu.html | 4 +-- docs/1.0-dev/api/evennia.utils.evmore.html | 4 +-- docs/1.0-dev/objects.inv | Bin 139110 -> 139172 bytes docs/1.0-dev/searchindex.js | 2 +- docs/1.0-dev/toc.html | 1 + 25 files changed, 133 insertions(+), 87 deletions(-) diff --git a/docs/1.0-dev/.buildinfo b/docs/1.0-dev/.buildinfo index 1c5a767a90..8cd6ec4cea 100644 --- a/docs/1.0-dev/.buildinfo +++ b/docs/1.0-dev/.buildinfo @@ -1,4 +1,4 @@ # Sphinx build info version 1 # This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done. -config: 949d2bdd6fc7b28455c44d5411525350 +config: 116238cab42fe5ebb8e0a1502e9655f4 tags: 645f666f9bcd5a90fca523b33c5a78b7 diff --git a/docs/1.0-dev/Setup/Installation-Troubleshooting.html b/docs/1.0-dev/Setup/Installation-Troubleshooting.html index 52722d382e..4d508220c8 100644 --- a/docs/1.0-dev/Setup/Installation-Troubleshooting.html +++ b/docs/1.0-dev/Setup/Installation-Troubleshooting.html @@ -90,6 +90,28 @@ version is usually untested with Evennia.

The evennia code itself is found inside evennia/evennia/ (so two levels down). Your settings file is mygame/server/conf/settings.py and the parent setting file is evennia/evennia/settings_default.py.

+
+

Virtualenv setup fails

+

When doing the python3.10 -m venv evenv step, some users report getting an error; something like:

+
Error: Command '['evenv', '-Im', 'ensurepip', '--upgrade', '--default-pip']' 
+returned non-zero exit status 1
+
+
+

You can solve this by installing the python3.10-venv package or equivalent for your OS. Alternatively +you can bootstrap it in this way:

+
python3.10 -m --without-pip evenv
+
+
+

This should set up the virtualenv without pip. Activate the new virtualenv and then install pip from within it:

+
python -m ensurepip --upgrade
+
+
+

If that fails, a worse alternative to try is

+
curl https://bootstrap.pypa.io/get-pip.py | python3.10    (linux/unix/WSL only)
+
+
+

Either way, you should now be able to continue with the installation.

+

Localhost not found

If localhost doesn’t work when trying to connect to your local game, try 127.0.0.1, which is the same thing.

@@ -188,6 +210,7 @@ virus software interfering. Try disabling or changing your anti-virus software s
  • Installation Troubleshooting