Amazon Redshift Python 커넥터 설치
다음 방법을 사용하여 Amazon Redshift Python 커넥터를 설치할 수 있습니다.
-
Python 패키지 인덱스(PyPi)
-
Conda
-
GitHub 리포지토리 복제
PyPI에서 Python 커넥터 설치
Python 패키지 인덱스(PyPi)에서 Python 커넥터를 설치하려면 pip를 사용할 수 있습니다. 다음 명령으로 실행하세요.
>>> pip install redshift_connector
가상 환경 내에 커넥터를 설치할 수 있습니다. 다음 명령으로 실행하세요.
>>> pip install redshift_connector
커넥터를 사용하여 pandas와 NumPy를 설치할 수도 있습니다.
>>> pip install "redshift_connector[full]"
pip에 대한 자세한 내용은 pip 웹 사이트
Conda에서 Python 커넥터 설치
Anaconda.org에서 Python 커넥터를 설치할 수 있습니다.
>>>conda install -c conda-forge redshift_connector
AWS에서 GitHub 리포지토리를 복제하여 Python 커넥터 설치
소스에서 Python 커넥터를 설치하려면 AWS에서 GitHub 리포지토리를 복제합니다. Python 및 virtualenv를 설치한 후 다음 명령을 실행하여 환경을 설정하고 필요한 종속성을 설치합니다.
$ git clone https://github.com/aws/amazon-redshift-python-driver.git $ cd RedshiftPythonDriver $ virtualenv venv $ . venv/bin/activate $ python -m pip install -r requirements.txt $ python -m pip install -e . $ python -m pip install redshift_connector