@axd wrote:
This isn't a flexget error but I'm hoping someone can point in the right direction for how to fix my issue.
When I update flexget with pip, there are no errors, and the /flexget/ folder and FlexGet-1.2.441-py2.7.egg are placed here:
/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/
but the/usr/bin/local/flexget
doesn't get modified (still references version 1.2.430).But when I am running flexget, it is using the /flexget/ folder (the FlexGet-1.2.430-py2.7.egg) here:
/usr/local/Cellar/python/2.7.9/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/
which is symlinked to/usr/local/lib/python2.7/site-packages
I suspect there is a difference between the python package that pip thinks I am using, and the python package that is used when I run flexget.
For interests sake, this is in my /usr/bin/local/flexget (not sure what it is supposed to look like?)
#!/usr/local/Cellar/python/2.7.9/Frameworks/Python.framework/Versions/2.7/Resources/Python.app/Contents/MacOS/Python # EASY-INSTALL-ENTRY-SCRIPT: 'FlexGet==1.2.430','console_scripts','flexget' __requires__ = 'FlexGet==1.2.430' import sys from pkg_resources import load_entry_point if __name__ == '__main__': sys.exit( load_entry_point('FlexGet==1.2.430', 'console_scripts', 'flexget')() )
Does anyone have any ideas what could be wrong or how to successfully upgrade flexget?
Flexget works fine but is throwing a few errors (imdb lookups) that are solved in a later version than I have installed.
Is there someway to point pip at the version of python that is being used, or is there an easy way to uninstall python / flexget and reinstall so it is all working nicely?
I tried switching the two site-packages folders over, but then a pkg_resources error was thrown.
Thanks.
Posts: 2
Participants: 2