Pycharm怎么打包Python脚本
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Pycharm怎么打包Python脚本相关的知识,希望对你有一定的参考价值。
用cx_Freeze即可,它和py2exe,py2app类似,不过是跨平台的,并且支持python3。 例子:import sys
from cx_Freeze import setup, Executable
# Dependencies are automatically detected, but it might need fine tuning.
build_exe_options = "packages": ["os"], "excludes": ["tkinter"]
# GUI applications require a different base on Windows (the default is for a
# console application).
base = None
if sys.platform == "win32":
base = "Win32GUI"
setup( name = "guifoo",
version = "0.1",
description = "My GUI application!",
options = "build_exe": build_exe_options,
executables = [Executable("guifoo.py", base=base)]) 参考技术A 使用Pyinstaller
pycharm脚本写好后怎么拿出来用
参考技术A pycharm脚本写好后使用方法如下1.打开pycharm;
2.选择右上角file;
3.单击,选择newproject;
4.之后自己写一个项目名称;
5.一般选择newwindow;
6.右键刚刚建立的项目;
7.在里面输入程序语句;
8.右键空白处,选择run;
9.输出结果。
以上是关于Pycharm怎么打包Python脚本的主要内容,如果未能解决你的问题,请参考以下文章