From fbbf8d1a019bd2344501b4583f15b05b7401b98f Mon Sep 17 00:00:00 2001 From: lugie314 Date: Mon, 13 Apr 2026 01:18:11 -0400 Subject: [PATCH 1/2] Replaced git installation with OS specific instructions. Also, added HTTPS cloning alongside SSH --- content/odp/python/installation.mdx | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/content/odp/python/installation.mdx b/content/odp/python/installation.mdx index 8625accfa5..fa472cc994 100644 --- a/content/odp/python/installation.mdx +++ b/content/odp/python/installation.mdx @@ -108,12 +108,27 @@ To install from source, create a Python virtual environment and update `pip` and
To build the ODP Python packages from the source code, first install `git`: +- macOS (with Homebrew) ```console -pip install git +brew install git ``` +- Ubuntu/Debian: + +```console +sudo apt update +sudo apt install git +``` + +- Windows: Download and install from [git-scm.com/downloads](https://git-scm.com/downloads) Next, clone the repository from GitHub: +- via https +```console +git clone https://github.com/OpenBB-finance/OpenBB.git +``` + +- via SSH ```console git clone git@github.com:OpenBB-finance/OpenBB.git ``` From f29a3f1f8df27572b5a82461c4a26e9a69b3db79 Mon Sep 17 00:00:00 2001 From: emilio lugo <138060242+emiliolugo@users.noreply.github.com> Date: Mon, 13 Apr 2026 00:23:51 -0500 Subject: [PATCH 2/2] Fixed HTTPS capitalization --- content/odp/python/installation.mdx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/content/odp/python/installation.mdx b/content/odp/python/installation.mdx index fa472cc994..780d5e687d 100644 --- a/content/odp/python/installation.mdx +++ b/content/odp/python/installation.mdx @@ -106,6 +106,7 @@ This will mount the local `~/.openbb_platform` directory into the Docker contain To install from source, create a Python virtual environment and update `pip` and `setuptools`, within the newly created environment, **before** installing any packages.
+ To build the ODP Python packages from the source code, first install `git`: - macOS (with Homebrew) @@ -123,7 +124,7 @@ sudo apt install git Next, clone the repository from GitHub: -- via https +- via HTTPS ```console git clone https://github.com/OpenBB-finance/OpenBB.git ```