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
+10-1Lines changed: 10 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -18,14 +18,23 @@ The project's documentation is available at https://dynamo-pandas.readthedocs.io
18
18
19
19
## Requirements
20
20
*`python>=3.7`
21
-
*`boto3`
22
21
*`pandas>=1`
22
+
*`boto3`
23
23
24
24
## Installation
25
25
26
26
```
27
27
python -m pip install dynamo-pandas
28
28
```
29
+
30
+
This will install the package and its dependencies except for `boto3` which is not installed by default to avoid unnecessary installation when building Lambda layers.
31
+
32
+
To include `boto3` as part of the installation, add the `boto3` "extra" this way:
Copy file name to clipboardExpand all lines: docs/installation.rst
+11-2Lines changed: 11 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -13,11 +13,20 @@ Install ``dynamo-pandas`` from `PyPI <https://pypi.org/project/dynamo-pandas/>`_
13
13
$ pip install dynamo-pandas
14
14
15
15
16
+
This will install the package and its dependencies except for `boto3` which is not installed by default to avoid unnecessary installation when building Lambda layers.
17
+
18
+
To include `boto3` as part of the installation, add the `boto3` "extra" this way:
0 commit comments