diff --git a/docs/software/python/installation.md b/docs/software/python/installation.md
index 639ea2bf..1db2884d 100644
--- a/docs/software/python/installation.md
+++ b/docs/software/python/installation.md
@@ -6,13 +6,15 @@ sidebar_label: Installation
import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';
-This library provides a command line interface for Meshtastic nodes and provides an easy API for sending and receiving messages over mesh radios, in addition to changing user settings. Using the command line is currently the most powerful. Events are delivered using a publish-subscribe model, and you can subscribe to only the message types you are interested in.
+This library provides a command line interface (CLI) for Meshtastic nodes and provides an easy API for sending and receiving messages over mesh radios, in addition to changing user settings. Using the command line is currently the most powerful. Events are delivered using a publish-subscribe model, and you can subscribe to only the message types you are interested in.
[Full documentation](https://meshtastic.org/docs/software/python/python-installation) for the library, including examples, is available.
If you wish to view the code or contribute to development of the python library or the command line interface, please visit the Meshtastic python GitHub page.
-Installation is easily done through the [Python package installer pip](https://pypi.org/project/meshtastic/):
+There are standalone executables for Mac, Windows and Ubuntu if you do not want to install python and/or the python libraries required to run the mestastic CLI tool. See [Standalone](https://meshtastic.org/docs/software/python/python-standalone) for more information.
+
+Installation can also be easily done through the [Python package installer pip](https://pypi.org/project/meshtastic/):
:::note
You must use pip version 20 or later. To upgrade to the latest pip, do: `pip install --upgrade pip`
:::
diff --git a/docs/software/python/standalone.md b/docs/software/python/standalone.md
new file mode 100644
index 00000000..64cca31f
--- /dev/null
+++ b/docs/software/python/standalone.md
@@ -0,0 +1,64 @@
+---
+id: python-standalone
+title: Meshtastic-python standalone executable
+sidebar_label: Standalone
+---
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+There are standalone executable files for Mac, Windows and Ubuntu. A single file is all you need to run the command line interface (CLI) Meshtastic tool. There is a zip file per operating system. To use, see the operating system specific notes below:
+
+
+
+
+
+* Download meshtastic_ubuntu.zip
+
+* Unzip.
+
+* Run: "chmod +x meshtastic"
+
+* To run: "./meshtastic"
+
+* Tip: Copy (or move) this binary somewhere in your path.
+
+
+
+
+* Download meshtastic_mac.zip
+
+* Unzip.
+
+* Run: "chmod +x meshtastic"
+
+* Try to run it: "./meshtastic". You may get a dialog that says:
+ "meshtastic" can't be opened because Apple cannot check it for malicious software.
+
+* To fix, go into "System Preferences", "Security & Privacy", "General" tab, and click on the "Allow Anyway" button.
+
+* Try to run it again: "./meshtastic". You may get a dialog that says:
+ "meshtastic" can't be opened because Apple cannot check it for malicious software.
+ Click "Open".
+
+* Now when you want to run it, you can simply run "./meshtastic".
+
+* Tip: Copy (or move) this binary somewhere in your path.
+
+
+
+
+* Download meshtastic_windows.zip
+
+* Unzip.
+
+* To run, double click on "meshtastic.exe" or from a command prompt run "./meshtastic.exe"
+
+
+
diff --git a/sidebars.js b/sidebars.js
index dc01c654..7c301e32 100644
--- a/sidebars.js
+++ b/sidebars.js
@@ -50,6 +50,7 @@ module.exports = {
{
"Meshtastic-python": [
"software/python/python-installation",
+ "software/python/python-standalone",
"software/python/python-cli",
"software/python/python-uses",
"software/python/python-commands",