- 论坛徽章:
- 0
|
本帖最后由 crifan 于 2013-01-05 16:24 编辑
1.你是为Linux系统打包的?
2.我是用其打包为windows的单个exe的,所以用-F,效果非常不错。
详见:
【记录】用PyInstaller把Python代码打包成单个独立的exe可执行文件
3.看起来,你是要把中间所生成的库文件等,放到别的目录。
那很简单啊。
参考
pyinstaller的官网的在线文档
里面解释的很清楚:
--buildpath=BUILDPATH
Buildpath (default: SPECPATH/build/pyi.TARGET_PLATFORM/SPECNAME)
-o DIR, --out=DIR
create the spec file in directory. If not specified, and the current directory is Installer's root directory, an output subdirectory will be created. Otherwise the current directory is used.
-n NAME, --name=NAME
optional name to assign to the project (from which the spec file name is generated). If omitted, the basename of the (first) script is used.
自己去试试对应的
--buildpath
和
-o
就可以了。
|
|