The problem is that:
- /usr/bin/pip-2.7 has unversioned #!/usr/bin/python shebang (but it has 2.7 hardcoded in another place);
- /usr/bin/pip is a symlink to pip-2.7.

In such setup, pip-2.7 will explode if default Python version is not 2.7. (And the package dependencies don't ensure it's 2.7.)

Ideally:
- /usr/bin/pip-2.X should have #!/usr/bin/python2.X shebang;
- /usr/bin/pip should have unversioned #!/usr/bin/python shebang.

--
Jakub Wilk



_______________________________________________
Python-modules-team mailing list
[email protected]
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/python-modules-team

Reply via email to