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