Skip to content

Commit 894ba74

Browse files
committed
docs: update installation instructions to reflect pandas, numpy being optional
1 parent ee63d11 commit 894ba74

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.rst

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,20 +21,20 @@ The easiest way to get started with redshift_connector is via `pip <https://pip.
2121

2222
``pip install redshift_connector``
2323

24+
For `pandas <https://github.com/pandas-dev/pandas>`_ and `numpy <https://github.com/numpy/numpy>`_ support, install as shown below:
25+
26+
``pip install 'redshift_connector[full]'``
27+
2428
Note: redshift_connector requires Python >= 3.5
2529

2630

27-
You can install from source by cloning this repository. Assuming that you have Python and ``virtualenv`` installed, set up your environment and install the required dependencies like this:
31+
You can install from source by cloning this repository.
2832

2933
.. code-block:: sh
3034
3135
$ git clone https://github.com/aws/amazon-redshift-python-driver.git
3236
$ cd redshift_connector
33-
$ virtualenv venv
34-
$ . venv/bin/activate
35-
$ python -m pip install -r requirements.txt
36-
$ python -m pip install -e .
37-
$ python -m pip install redshift_connector
37+
$ pip install .
3838
3939
Basic Example
4040
~~~~~~~~~~~~~

0 commit comments

Comments
 (0)