在CentOS中为Python安装xhtml2pdf模块
2012 年 2 月 8 日 – 17:23零. 环境简介
CentOS 5.7 x64
CentOS5默认的Python版本极低,仅为2.4版,在生产环境中已经无法满足需要。
一. 步骤流程
1. 安装python2.7
a) 下载源码:
http://www.python.org/ftp/python/2.7.2/Python-2.7.2.tar.bz2
b) 解压,编译:
tar jfvx Python-2.7.2.tar.bz2 ./configure make all make install
1234567 tar jfvx Python - 2.7.2.tar.bz2. / configuremake allmake install
c) 替换老版本
mv /usr/bin/python /usr/bin/python.bak ln -s /usr/local/bin/python /usr/bin/python
123 mv / usr / bin / python / usr / bin / python .bakln - s / usr / local / bin / python / usr / bin / python
d) 升级后yum会无法使用,因为yum使用的是2.4版本
vi /usr/bin/yum
1 vi / usr / bin / yum
将文件头部的
#!/usr/bin/python
1 #!/usr/bin/python
改成
#!/usr/bin/python2.4
1 #!/usr/bin/python2.4
2. 安装pip
http://pypi.python.org/pypi/pip#downloads
解压后运行,python setup.py install
如果提示需要setuptools也如法炮制
3. 用pip安装reportlab、html5lib、xhtml2pdf
pip install reportlab
1 pip install reportlab
pip install html5lib
1 pip install html5lib
pip install xhtml2pdf
1 pip install xhtml2pdf
4. [64位系统]安装PIL
# 64位系统注意此步,32位系统可忽略
ln -s /usr/lib64/libz.so /usr/lib
pip uninstall PIL
pip install PIL
二. 使用示例
#!/usr/bin/python
import sx.pisa3 as pisa
data=open(html_name).read()
result=file(pdfname,’w')
pdf=pisa.CreatePDF(data,result)
result.close()
三. 注意
1. python中的各种包之间也同样存在依赖关系;
2. 安装结束时注意提示文字,有可能会有后续的操作或者推荐包。