We need Python 3.4+

This commit is contained in:
henryruhs 2023-05-30 15:14:18 +02:00
parent aa3158576a
commit ff7343c2fa

2
run.py
View File

@ -55,6 +55,8 @@ def limit_resources():
def pre_check():
if sys.version_info < (3, 4):
quit(f'Python version is not supported - please upgrade to 3.4')
if not shutil.which('ffmpeg'):
quit('ffmpeg is not installed!')
if os.path.isfile('../inswapper_128.onnx'):