I'm trying to use this script to import my iTunes library to another program.
At the step where I enter python2 export_to_quod_libet.py, I'm getting an error message that says that the python2 command can't be found. I figured out through python -v that I definitely have Python 2.7 installed, so I'm really confused about this.
I did find a similar question being asked here, but the original poster was using Windows (whereas I'm using OS X El Capitan), so a lot of what was said at least didn't seem applicable to my situation.
Could someone tell me what I'm doing wrong, please?
python export_to_quod_libet.py.python -vjust usepython export_to_quod_libet.pyinstead ofpython2 ....python2is just a filename, so it needs to match the name of an available program in your PATH. Fix your script by editing it to use the name available in your system, as the previous comments suggested.