优化代码:pyinstaller保留以前运行的内存

时间:2017-04-06 09:17:17

标签: python pyinstaller

假设我有以下Python代码:

from django.utils import timezone


TIME_ZONE = timezone.now()

# TIME_ZONE = 'UTC'
# USE_I18N = True
# USE_L10N = True
# USE_TZ = True

如果我第一次运行8秒,因为第一行导入需要4秒。 如果我第二次运行它只需要4秒,因为它已经找到了内存。

当我使用PyInstaller生成一个exe时,有没有办法节省第二次和以下次的时间我在Python中运行exe?

0 个答案:

没有答案