본문 바로가기

728x90
반응형

Development/Python

(3)
Python 개발 환경 구축하기 (for Windows 10, virtualenv + virtualenvwrapper) 이번 포스트에서는 Windows 10에서 Python과 가상환경을 구축하고자 한다. 설치할 목록은 다음과 같다. Python 3.9.4 (Latest stable version) Virtualenv & Virtualenvwrapper 1. Python 설치하기 다음 링크에서 Python 설치 패키지를 다운로드한다. 본 포스트에서는 가장 최근의 안정화 버전인 Python 3.9.4를 설치했다. (단, 설치환경에 맞게 32bit 또는 64bit를 선택해 설치하면 된다. 여기서는 64bit를 설치한다) www.python.org/downloads/ Download Python The official home of the Python Programming Language www.python.org 다운로드 받은..
Python에서 Oracle 사용하기 (for Linux) # Python 패키지 'cx_oracle' 설치 (venv) $ pip install cx_Oracle # 관련 라이브러리 설치 $ sudo apt-get install libaio1 # 설치 파일 다운로드 (링크) instantclient-basic-linux.x64-19.8.0.0.0dbru.zip instantclient-sqlplus-linux.x64-19.8.0.0.0dbru.zip instantclient-sdk-linux.x64-19.8.0.0.0dbru.zip # 압축풀기 # 다운로드 받은 경로로 이동 후 진행 $ unzip instantclient-basic-linux.x64-19.8.0.0.0dbru.zip $ unzip instantclient-sqlplus-linux.x64-19...
Python에서 Oracle 사용하기 (for Mac OS X) # Python 패키지 'cx_oracle' 설치 (venv) $ pip install cx_Oracle # 설치 파일 다운로드 (링크) instantclient-basic-macos.x64-19.3.0.0.0dbru.zip instantclient-sqlplus-macos.x64-19.3.0.0.0dbru.zip instantclient-sdk-macos.x64-19.3.0.0.0dbru.zip # 압축풀기 # 다운로드 받은 경로로 이동 후 진행 $ unzip instantclient-basic-macos.x64-19.3.0.0.0dbru.zip $ unzip instantclient-sqlplus-macos.x64-19.3.0.0.0dbru.zip $ unzip instantclient-sdk-mac..