essandess / etv-comskip

Commercial Marking and Skipping for EyeTV and iTunes Exports
GNU General Public License v2.0
55 stars 7 forks source link

problem running the make command #67

Closed chmedly closed 7 years ago

chmedly commented 8 years ago

I get this line at the very bottom: ~/etv-comskip/etv-comskip/src/scripts/MarkCommercials ~/etv-comskip/etv-comskip /bin/sh: /opt/local/Library/Frameworks/Python.framework/Versions/2.7/bin/pyinstaller: No such file or directory make: *\ [MarkCommercials] Error 127

I went through the list of sudo commands to get python27 working and the only one that didn't work was when I tried to uninstall inactive. I got this error: Error: No ports matched the given expression

btw, ultimately I'm hoping to run this version of comskip in KMTTG. I get comskip failures about 50% of the time with the old old version of comskip that comes in KMTTG & I've had trouble getting a newer version running correctly in wine.

essandess commented 8 years ago

This shows that pyinstaller isn't installed for some reason. Grep on pyinstaller in the Makefile to see how this gets installed.

chris299 commented 6 years ago

I had the same issue, because the macport install of 'pip' doesn't put it into the search path so 'sudo -H pip install pyinstaller' from make file fails. @essandess you may want to change the command within the make file to 'sudo -H /opt/local/Library/Frameworks/Python.framework/Versions/2.7/bin/pip install pyinstaller' :)