I have, in /usr/local/lib/python2.7/site-packages
multiple versions of the same package.
E.g. I have django-angular-0.7.13-py2.6.egg
, django-angular-0.7.13-py2.6.egg-info
, and django-angular-0.7.13-py2.7.egg
.
Is it safe to delete the two files that are, ostensibly, the wrong version?
When I got into the python interpreter, import the package/module, it tells me it's run from <module 'django_angular' from '/usr/local/lib/python2.7/site-packages/django-angular-0.7.13-py2.6.egg/django_angular/__init__.py'>
...
I'm concern I'll irreparably damage my python packages, as is so easy when you mess with these things.
All I could find on the topic is this article, but that's windows specific, and doesn't address having multiple versions of the same thing.