Проблема со скриптом py

JRD

Malware Analyst
Joined
Sep 23, 2016
Messages
705
Reaction score
293
И так, решил я создать простенький скрипт по уникализации текста ( русские буквы на английские меняет)
Python:
case=input('введите ваш текст')
case=case.lower()
case=case.replace('а','a')
case=case.replace('о','o')
case=case.replace('е','e')
case=case.replace('у','y')
case=case.replace('с','c')
case=case.replace('х','x')
print(case)
в IDLE работает, но как только я захотел его скопилировать в exe, что бы удобно было, то сразу ошибки, компилировал я через pyinstaller
exeшник после запуска просто крашится, в чем я ошибся?
 

tukoan

New member
Joined
Jul 2, 2007
Messages
3
Reaction score
0
"Hey, what's the issue with your py script? Got a specific error message or it's just not running as expected?"
 

ket-ant

New member
Joined
Aug 16, 2011
Messages
1
Reaction score
0
"Hey, I had a similar issue with py script the other day, and I realized it was because of a dependency issue. Make sure your environment's python and pip are up to date, and try reinstalling scipy if you're using it. That usually fixes it for me."
 
Top