码迷,mamicode.com
首页 > 系统相关 > 详细

使用pyinstaller 对py脚本进行打包(生成linux可执行文件)

时间:2014-04-30 19:21:15      阅读:691      评论:0      收藏:0      [点我收藏+]

标签:com   http   blog   style   class   div   img   code   java   c   log   

需求1:打包成Linux上可执行程序
a. 先下载pyinstaller程序,我当前下载的是PyInstaller-2.1的版本
进行如下操作:

pythoner@pythoner-virtual-machine:~/PyInstaller-2.1$ sudo python2.7 setup.py install
pythoner@pythoner-virtual-machine:~/PyInstaller-2.1$ pwd
/home/pythoner/PyInstaller-2.1

#生成一个单文件可执行的spec文件

pythoner@pythoner-virtual-machine:~/PyInstaller-2.1$ ./utils/makespec.py --onefile ~/05.py 
wrote /home/pythoner/PyInstaller-2.1/05/05.spec
now run pyinstaller.py to build the executable

#将该spec文件进行构建,生成一个独立的可执行文件
#这个文件在 /home/pythoner/PyInstaller-2.1/utils下面

bubuko.com,布布扣
pythoner@pythoner-virtual-machine:~/PyInstaller-2.1$ ./utils/build.py 05/05.spec 
42 INFO: UPX is not available.
83 INFO: Processing hook hook-os
248 INFO: Processing hook hook-time
251 INFO: Processing hook hook-cPickle
347 INFO: Processing hook hook-_sre
475 INFO: Processing hook hook-cStringIO
589 INFO: Processing hook hook-encodings
606 INFO: Processing hook hook-codecs
1086 INFO: Extending PYTHONPATH with /home/pythoner
1086 INFO: checking Analysis
1101 INFO: checking PYZ
1109 INFO: checking PKG
1110 INFO: checking EXE
#文件生成了!
pythoner@pythoner-virtual-machine:~/PyInstaller-2.1$ stat 05/dist/05
  File: ‘05/dist/05’
  Size: 4230711       Blocks: 8264       IO Block: 4096   regular file
Device: 801h/2049d    Inode: 4196956     Links: 1
Access: (0755/-rwxr-xr-x)  Uid: ( 1000/pythoner)   Gid: ( 1000/pythoner)
Access: 2014-04-28 21:45:40.110497178 +0700
Modify: 2014-04-28 21:45:20.806496857 +0700
Change: 2014-04-28 21:45:20.806496857 +0700
Birth: -
bubuko.com,布布扣

使用pyinstaller 对py脚本进行打包(生成linux可执行文件),布布扣,bubuko.com

使用pyinstaller 对py脚本进行打包(生成linux可执行文件)

标签:com   http   blog   style   class   div   img   code   java   c   log   

原文地址:http://www.cnblogs.com/start0cheng/p/3699234.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!