Fork me on GitHub
摘要: 搭建环境: Ubuntu 15.04 Apache 2.4.16 PHP 5.6.151 安装Apache 先安装依赖程序(都安装在 /usr/local/ 目录下) apr-1.5.2.tar.gz http://apr.apache.org/download.cgi ... 阅读全文
posted @ 2015-11-25 18:22 Roronoa__Zoro 阅读(228) 评论(0) 推荐(0)
摘要: 工具: xlrd, xlwt安装:pip命令安装即可使用: 读 xlrdimport xlrdbook = xlrd.open_workbook(filename)sheet1 = book.sheet_by_index(0)for row in range(sheet1.nrows): f... 阅读全文
posted @ 2015-11-25 00:40 Roronoa__Zoro 阅读(142) 评论(0) 推荐(0)
摘要: 工具:pyinstaller安装:pip install pyinstaller使用: 1将依赖文件集中到一个文件夹: pyinstaller -D -w xxx.py -w: xxx.py是一个窗体程序。 2 将所有依赖文件都打包到同一个可执行文件中: pyinst... 阅读全文
posted @ 2015-11-25 00:30 Roronoa__Zoro 阅读(206) 评论(0) 推荐(0)