You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+6-7Lines changed: 6 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -17,8 +17,7 @@ To run this prebuilt project, you will need:
17
17
18
18
-[Couchbase Capella](https://www.couchbase.com/products/capella/) cluster with [travel-sample](https://docs.couchbase.com/python-sdk/current/ref/travel-app-data-model.html) bucket loaded.
19
19
- To run this tutorial using a self managed Couchbase cluster, please refer to the [appendix](#running-self-managed-couchbase-cluster).
20
-
-[Python](https://www.python.org/downloads/) 3.12 or higher installed
21
-
- This quickstart is verified in CI and locally with Python 3.12.
20
+
-[Python](https://www.python.org/downloads/) 3.10 or higher installed
22
21
- Ensure that the Python version is [compatible](https://docs.couchbase.com/python-sdk/current/project-docs/compatibility.html#python-version-compat) with the Couchbase SDK.
23
22
- Loading Travel Sample Bucket
24
23
If travel-sample is not loaded in your Capella cluster, you can load it by following the instructions for your Capella Cluster:
@@ -40,14 +39,14 @@ The dependencies for the application are specified in the `requirements.txt` fil
40
39
41
40
```shell
42
41
cd src
43
-
python3 -m pip install -r requirements.txt
42
+
python -m pip install -r requirements.txt
44
43
```
45
44
46
-
> Note: On Windows, or inside an activated virtual environment where `python3`is not available, use `python` in the commands below instead.
45
+
> Note: If your environment only provides a `python3`executable, substitute `python3` in the commands below.
47
46
48
47
> Note: Python SDKs older than version 4.1.9 require OpenSSL v1.1. This might not be the default in some newer platforms. In such scenarios, please install the SDK without using the prebuilt wheels
0 commit comments