This is an automated email from the ASF dual-hosted git repository.
dweeks pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/iceberg.git
The following commit(s) were added to refs/heads/master by this push:
new c3b256436e Python: Add note on pip (#8484)
c3b256436e is described below
commit c3b256436ea9ea61b9789e5144262c7e11806d7f
Author: Fokko Driesprong <[email protected]>
AuthorDate: Sun Sep 3 23:25:31 2023 +0200
Python: Add note on pip (#8484)
Fixes #8374
---
python/mkdocs/docs/index.md | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
diff --git a/python/mkdocs/docs/index.md b/python/mkdocs/docs/index.md
index 89b66129e3..23adde5d96 100644
--- a/python/mkdocs/docs/index.md
+++ b/python/mkdocs/docs/index.md
@@ -26,10 +26,16 @@ PyIceberg is a Python implementation for accessing Iceberg
tables, without the n
## Install
+Before installing PyIceberg, make sure that you're on an up-to-date version of
`pip`:
+
+```sh
+pip install --upgrade pip
+```
+
You can install the latest release version from pypi:
```sh
-pip3 install "pyiceberg[s3fs,hive]"
+pip install "pyiceberg[s3fs,hive]"
```
Install it directly for Github (not recommended), but sometimes handy: