반응형
PyFPDF 설치
FPDF란 python상에서 PDF Document 생성을 위한 라이브러리를 뜻합니다.
( 참조 URL : https://pyfpdf.readthedocs.io/en/latest/ )
설치 방법은 위 URL에서 총 4가지로 다루고 있습니다.
※ 파이썬이 먼저 설치돼야 합니다.
Installation
- Using PyPI
- Using EasyInstall
c:\python27\Scripts\easy_install.exe fpdf
- From source:
- Download and unpack source package (zip) or pull from the repository
- Run
python setup.py install
- Using MSI or Windows Installers
1. EasyInstall로 설치하기
간단하게 easy_install로 fpdf 설치를 해봅시다.
파이썬 환경변수 등록이 되신 분들은 그냥 easy_install.exe fpdf 해주시면 됩니다.
환경변수 등록이 안돼었다면 전체경로를 적어줘야겠죠. c:\python27/Scripts/easy_install.exe fpdf (자신의 파이썬 설치 경로에 맞게 입력)
easy_install를 이용하면 Dependencies 까지 알아서 설치해줍니다. 명령어 한줄로 설치 완료 !
[ 관련 API 참조 ]
pyFPDF API 함수들은 https://pyfpdf.readthedocs.io/en/latest/ReferenceManual/index.html 에서 참조.
반응형
'파이썬 담아두기' 카테고리의 다른 글
파이썬 입출력 (0) | 2018.09.21 |
---|---|
파이썬에서 프로세스 생성 (0) | 2018.08.21 |
BeautifulSoup4 설치 (bs4) (0) | 2018.08.10 |
파이썬 환경변수 설정 (0) | 2018.08.10 |
파이썬 문자열 대소문자 변환 (0) | 2018.01.23 |