samim23/polymath

syntaxError

Loris-bite opened this issue · 11 comments

When i run i've got a syntax error :
python polymath.py -a /Users/loris/Desktop/Music/polymath2023/

File "polymath.py", line 60 command = f"ffmpeg -hide_banner -loglevel panic -i {file} -ab 160k -ac 2 -ar 44100 -vn -y {vidobj.audio}" ^ SyntaxError: invalid syntax

What platform (windows, mac, linux) are you on?

mac (Big Sur 11.7.3)

Do you have ffmpeg installed on your system?

brew install ffmpeg

I didn't have it, but after installing it I still have the same error.

@Loris-bite What does the output of python --version say?

Python 2.7.16

Polymath requires Python 3.7, 3.8, 3.9 or 3.10 (no bigger than 3.10 on MacOs!). Please try upgrading your setup!

I have Python 3.10. If i use python3 --version the output say Python 3.10.6

Then you should also use python3 to call polymath, i.e.

python3 polymath.py -a /Users/loris/Desktop/Music/polymath2023/

Also make sure that you installed the requirements with the correct pip (likely pip3) or consider setting up a conda environment.

I Reinstalled using pip3 and now it works!

awesome!