Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 17 additions & 1 deletion content/odp/python/installation.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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.

<details>

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
```
Expand Down
Loading