#python #pyinstaller
Вопрос:
Я пытаюсь преобразовать свой .py
файл в .exe
using pyinstaller
, но получаю предупреждение js2pyconstructorstime_helpers.py:10: UserWarning: Please install or fix tzlocal library (pip install tzlocal) in order to make Date object work better. Otherwise I will assume DST is in effect all the time
, как я могу исправить свой код
jsCode = "my jscode" import js2py res_2 = js2py.eval_js(jsCode)() print(res_2) import os os.system("pause")