diff --git a/content/odp/python/installation.mdx b/content/odp/python/installation.mdx index 8625accfa5..780d5e687d 100644 --- a/content/odp/python/installation.mdx +++ b/content/odp/python/installation.mdx @@ -106,14 +106,30 @@ 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) +```console +brew install git +``` +- Ubuntu/Debian: + ```console -pip install git +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 ```