From 3ab6f447ffd8d2394e58416e401e545a99ec85af Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Fri, 1 Mar 2024 14:57:41 +0100 Subject: [PATCH] chore(docs): mention install from git repo (#1203) --- CONTRIBUTING.md | 2 +- README.md | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 3290e1350..7ab73dbf4 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -59,7 +59,7 @@ If you’d like to use the repository from source, you can either install from g To install via git: ```bash -pip install git+ssh://git@github.com:openai/openai-python.git +pip install git+ssh://git@github.com/openai/openai-python.git ``` Alternatively, you can build from source and install the wheel file: diff --git a/README.md b/README.md index 0e06cd563..7d6c896d5 100644 --- a/README.md +++ b/README.md @@ -18,6 +18,7 @@ The REST API documentation can be found [on platform.openai.com](https://platfor > The SDK was rewritten in v1, which was released November 6th 2023. See the [v1 migration guide](https://github.com/openai/openai-python/discussions/742), which includes scripts to automatically update your code. ```sh +# install from PyPI pip install openai ```