2016년 12월 22일 목요일

[Python] Windows에 cx_Oracle 설치


  1. OS : Windows 10 64bit
  2. Python : 2.7.12, 64bit
  3. Oracle Instant Client downalod
    • http://www.oracle.com/technetwork/database/features/instant-client/index-097480.html
    • 다운로드 -> 압축해제 -> 환경변수 -> 시스템변수 -> Path 추가
  4. cx_Oracle download
    • https://pypi.python.org/pypi/cx_Oracle/5.2.1

댓글 없음:

댓글 쓰기

[python] subprocess

proc.py import asyncio from argparse import ArgumentParser from asyncio import sleep async def process_function(user, file_path):     if use...