본문 바로가기
파이썬

파이썬 용 cx_oracle 설치

by º기록 2020. 10. 22.
반응형


그런 다음 /usr/lib/oracle/xe/app/oracle/product/10.2.0/client/bin 의 스크립트를 사용하여 PATH, ORACLE_HOME 및 NLS_LANG와 같은 환경 변수를 채웠습니다.

이 작업이 완료되면 다음을 실행 해 보았습니다.

sudo easy_install cx_oracle

하지만 다음과 같은 오류가 계속 발생합니다.

Searching for cx-oracle
Reading http://pypi.python.org/simple/cx_oracle/
Reading http://cx-oracle.sourceforge.net
Reading http://starship.python.net/crew/atuining
Best match: cx-Oracle 5.0.4
Downloading http://prdownloads.sourceforge.net/cx-oracle/cx_Oracle-5.0.4.tar.gz?download
Processing cx_Oracle-5.0.4.tar.gz
Running cx_Oracle-5.0.4/setup.py -q bdist_egg --dist-dir /tmp/easy_install-xsylvG/cx_Oracle-5.0.4/egg-dist-tmp-8KoqIx
error: cannot locate an Oracle software installation

내가 여기서 뭘 놓쳤는 지 아십니까?

 

해결 방법

 

rpm 파일을 가져 와서 외계인과 함께 설치하는 것이 좋습니다. 이렇게하면 나중에 apt-get purge no-needed 를 실행할 수 있습니다.


echo export LD_LIBRARY_PATH=/usr/lib/oracle/11.2/client/lib >> ~/.bashrc
source ~/.bashrc

귀하의 경우 경로 변수가 /usr/lib/oracle/xe/app/oracle/product/10.2.0/client/lib 라고 가정합니다.

 

참조 페이지 https://stackoverflow.com/questions/4307479

 

 

반응형

댓글