You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
183 B
8 lines
183 B
# 通过 pyinstaller 打包为 exe
|
|
|
|
import os
|
|
|
|
dirPath = os.getcwd()
|
|
|
|
os.system(f'cd /d {dirPath}')
|
|
os.system(r'pyinstaller -F -w -i icon/icon.ico -n "Umi-OCR 文字识别" main.py')
|