- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我已经使用 Pyinstaller 将我的程序(用 Python 3.6.1 编写,使用 Python 3.5.3 转换)从 .py 转换为 .exe。但是,它加载速度慢得令人难以置信(大约需要 16 秒,而在 IDLE 中运行时需要 <1 秒),即使在我优化我认为问题是(导入大量模块,所以我将代码更改为仅导入必要的模块部分)。在 IDLE 中运行它时,它的速度大大加快了,但是当我从中创建一个 .exe 时,它完全一样(而且我确实检查过我使用的是正确的 .py文件)。我似乎 Pyinstaller 只是将您在系统上安装的所有模块打包到 .exe 中,而不是仅将实际使用的模块的一小部分打包(使用 --onefile
时)。如何确保 Pyinstaller 仅安装模块的必要部分或以其他方式加速,同时仍然使用 --onefile
并将其打包到单个 .exe 中?
完整代码:
from os import path, remove
from time import sleep
from sys import exit
from getpass import getuser
from mmap import mmap, ACCESS_READ
my_file = "Text To Speech.mp3"
username = getuser()
no_choices = ["no", "nah", "nay", "course not", "don't", "dont", "not"]
yes_choices = ["yes", "yeah", "course", "ye", "yea", "yh", "do"]
def check_and_remove_file():
active = mixer.get_init()
if active != None:
mixer.music.stop()
mixer.quit()
quit()
if path.isfile(my_file):
remove(my_file)
def get_pause_duration(audio_length, maximum_duration=15):
default_pause, correction = divmod(audio_length, 12)
return min(default_pause + bool(correction), maximum_duration)
def exiting():
check_and_remove_file()
print("\nGoodbye!")
exit()
def input_for_tts(message):
try:
tts = gTTS(text = input(message))
tts.save('Text To Speech.mp3')
with open(my_file) as f:
m = mmap(f.fileno(), 0, access=ACCESS_READ)
audio = MP3(my_file)
audio_length = audio.info.length
try:
mixer.init()
except error:
print("\nSorry, no audio device was detected. The code cannot complete.")
m.close()
exiting()
mixer.music.load(m)
mixer.music.play()
sleep(audio_length + get_pause_duration(audio_length))
m.close()
check_and_remove_file()
except KeyboardInterrupt:
exiting()
from pygame import mixer, quit, error
from gtts import gTTS
from mutagen.mp3 import MP3
check_and_remove_file()
input_for_tts("Hello there " + username + ". This program is\nused to output the user's input as speech.\nPlease input something for the program to say: ")
while True:
try:
answer = input("\nDo you want to repeat? ").strip().lower()
if answer in ["n", no_choices] or any(x in answer for x in no_choices):
exiting()
elif answer in ["y", yes_choices] or any(x in answer for x in yes_choices):
input_for_tts("\nPlease input something for the program to say: ")
else:
print("\nSorry, I didn't understand that. Please try again with yes or no.")
except KeyboardInterrupt:
exiting()
最佳答案
看看文档,我想这解释了为什么它很慢:https://pyinstaller.readthedocs.io/en/stable/operating-mode.html#how-the-one-file-program-works
简短的回答,需要提取程序的完整环境并将其写入临时文件夹。
此外,单文件选项与您的预期相反:https://pyinstaller.readthedocs.io/en/stable/operating-mode.html#bundling-to-one-file
关于python - 加速使用 Pyinstaller 创建的 .exe,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44250280/
我正在努力处理不同的 R 可执行文件。在批处理文件中运行命令行时,R.exe(带或不带 CMD BATCH 选项)、Rcmd.exe、Rscript.exe 和 Rterm.exe 有什么区别? 两者
这个问题是我之前问题的一个答案的扩展:how to save user registration in the exe... (C#) . 这个想法本身对我来说仍然很新,但它似乎是合理的。我第一次尝试
关闭。这个问题是off-topic .它目前不接受答案。 想改进这个问题吗? Update the question所以它是on-topic用于堆栈溢出。 关闭 12 年前。 Improve thi
我正在使用 React VR 制作一个 WebVR 应用程序。我将使用 Oculus Rift 和 HTC-Vive 测试该应用程序。我正在使用浏览器 Firefox Nightly 来访问 WebV
当我从 A.exe(位于 c:/my_software/FOLDER_A/A.exe)运行 B.exe(位于 c:/my_software/FOLDER_B/B.exe)时,两者均使用 cx_Free
我有一个以前的程序员留下的exe(GUI),它是在cpp中完成的,但是我需要禁用程序中的一些键盘键,因为当它们被意外击中时,这是不可取的。我正在使用 Windows。 我能否编写一个程序来在 Wind
这不是以下 SO 问题的重复: How do I tell if a win32 application uses the .NET runtime . 如果给定的 exe 文件是 .net exe
我刚刚安装了 ActivePython 3.6 的 64 位版本,发现它包含三个可执行文件,它们报告相同的版本信息,大小相同,但不完全相同,即peer fc.exe。我有 python.exe pyt
很难说出这里要问什么。这个问题模棱两可、含糊不清、不完整、过于宽泛或夸夸其谈,无法以目前的形式得到合理的回答。如需帮助澄清此问题以便重新打开,visit the help center . 关闭 9
有哪些方法可以保护exe文件免遭逆向工程。有很多打包工具可以打包exe文件。这种方法在http://c-madeeasy.blogspot.com/2011/07/protecting-your-c-
仅当应用“X”(Inspect.exe | Narrator.exe | Magnify.exe)正在运行时,我才能在 Windows 应用程序中获取一些 IUIAutomationElements。
我正在编写一个创建 Windows 服务的程序。所以我需要两个 .exe 文件——一个用于程序,创建服务,另一个用于服务本身。但是我想将这两个文件合二为一。我有以下想法 - 打开 .exe 文件,我想
我有一个 UWP 应用,我需要从 users %appdata% 文件夹中启动一个 .Exe 文件。 我不知道如何找到 %appdata% 或如何启动 Exe 文件。 我已经查看了所有解决方案,但没有
我最近安装了 Visual Studio 2017,MSBuild.exe 不是应该自带的吗? bash 脚本之一正在调用它,但找不到任何东西。 这是 build.bat 产生错误的部分(您可以看到整
我正在我自己的代码中尝试来自 Mad-collections(用于在 exe 中添加/删除或更新资源的单元)中 Madres 单元的不同功能。这适用于小型资源(小于 50 MB),但对于较大的资源(大
什么是PreEmptive Protection Dotfuscator exe文件的Map.Xml和Dotfuscator1.Xml文件。我应该出于某种原因保留它们,还是项目 exe 文件组装需要它
我最近接手了一个项目,我不确定最后一个人是如何调试这个的......我有两个可执行文件,一个最终运行另一个。我将它们称为 exe1 和 exe2。这些是用 C# 创建的,我使用 Visual Stud
如何从 REBOL 脚本创建 Windows 可执行文件 (.exe)?有任何说明或视频吗? 最佳答案 使用 Rebol 2 最简单的方法是使用 SDK - 尽管这需要花钱购买许可证。该方法称为封装。
我正在尝试打开下载的 .exe 文件,但它在打开后立即关闭。有什么可能的方法可以让我打开它更长的时间来阅读内容。 最佳答案 它可能是一个控制台应用程序而不是一个 GUI 应用程序。使用命令提示符运行
我想运行一个位于以下目录中的应用程序: C:\LCR 12\stu.exe 使用 AutoIt,运行上述 stu.exe 文件的代码是什么? 最佳答案 像这样: Run("C:\LCR 12\stu.
我是一名优秀的程序员,十分优秀!