当前位置: 首页 > 工具软件 > pyC11 > 使用案例 >

python打包pyc

凤衡
2023-12-01

因需要,Windows环境运行,打包pyc,全工程打包

#!/usr/bin/env python
# -*- coding: utf-8 -*-
# @Time    : 2022/2/14 11:15
# @Author  : cwb
# @Site    : 
# @File    : setup-pyc.py
# @Software: PyCharm
import os
import shutil
import compileall
from pathlib import Path
versions = ".cpython-37"
pycache = "__pycache__"
build_dir = 
 类似资料: