diff --git a/docs/manual/.buildinfo b/docs/manual/.buildinfo
index 0f46a30..45e6b9a 100644
--- a/docs/manual/.buildinfo
+++ b/docs/manual/.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: d8447d44585d036754ef13c1e3b2bcb2
+config: ab776c37991b695fba62f8d653f98b5e
tags: 645f666f9bcd5a90fca523b33c5a78b7
diff --git a/docs/manual/_sources/gettingstartedfast.rst.txt b/docs/manual/_sources/gettingstartedfast.rst.txt
index 1683108..ecd4389 100644
--- a/docs/manual/_sources/gettingstartedfast.rst.txt
+++ b/docs/manual/_sources/gettingstartedfast.rst.txt
@@ -10,22 +10,62 @@ scenarios.
Standalone Reticulum Installation
=============================================
If you simply want to install Reticulum and related utilities on a system,
-the easiest way is via ``pip``:
+the easiest way is via the ``pip`` package manager:
.. code::
pip install rns
-If you no not already have pip installed, you can install it using the package manager
+If you do not already have pip installed, you can install it using the package manager
of your system with a command like ``sudo apt install python3-pip``,
-``sudo pamac install python-pip`` or similar. You can also dowload the Reticulum release
-wheels from GitHub, or other release channels, and install them offline using ``pip``:
+``sudo pamac install python-pip`` or similar.
+
+You can also dowload the Reticulum release wheels from GitHub, or other release channels,
+and install them offline using ``pip``:
.. code::
pip install ./rns-0.4.6-py3-none-any.whl
+Resolving Dependency & Installation Issues
+=============================================
+On some platforms, there may not be binary packages available for all dependencies, and
+``pip`` installation may fail with an error message. Most often, this is simply due to
+the ``netifaces`` package not having a pre-compiled package available via ``pip``.
+
+Usually, this can be resolved by simply installing ``netifaces`` via the system package
+manager:
+
+.. code::
+
+ # Debian / Ubuntu / Derivatives
+ sudo apt install python3-netifaces
+
+ # Arch / Manjaro / Derivatives
+ sudo pamac install python3-netifaces
+
+ # Fedora
+ sudo dnf install python3-netifaces
+
+More rarely, other dependencies cannot be resolved. In these cases, the issue can usually
+be resolved by installing the development essentials packages for your platform:
+
+.. code::
+
+ # Debian / Ubuntu / Derivatives
+ sudo apt install build-essential
+
+ # Arch / Manjaro / Derivatives
+ sudo pamac install base-devel
+
+ # Fedora
+ sudo dnf groupinstall "Development Tools" "Development Libraries"
+
+With the base development packages installed, ``pip`` should be able to compile any missing
+dependencies from source, and complete installation even on platforms that don't have pre-
+compiled packages available.
+
Try Using a Reticulum-based Program
=============================================
@@ -320,8 +360,14 @@ the `disucssion forum on GitHub It is currently recommended to use a 64-bit version of the Raspberry Pi OS
if you want to run Reticulum on Raspberry Pi computers, since 32-bit versions
don’t always have packages available for some dependencies. While it is possible to install and run Reticulum on 32-bit Rasperry Pi OSes,
+it will require manually configuring and installing some packages, and is not
+detailed in this manual. On Fedora, Alternatively, you can install basic development packages, which will allow
+ Reticulum can be used on Android in different ways. The easiest way to get
started is using an app like Sideband. For more control and features, you can use Reticulum and related programs via
@@ -557,6 +612,7 @@ locally on your device using the following command:Reticulum on Raspberry Pi#
+Reticulum on Raspberry Pi#
Reticulum on Fedora#
+pip
installation may fail with an error message, since the netifaces
+package cannot be installed natively via pip
. This can be resolved by installing
+the python3-netifaces
package via dnf
first:sudo dnf install python3-netifaces
+
pip
to install any required packages from source:sudo dnf groupinstall "Development Tools" "Development Libraries"
+
Reticulum on Android#
+Reticulum on Android#
In some rare cases, and on more obscure system types, it is not possible to @@ -639,6 +695,7 @@ section of this manual.