I've installed the Enthought Python Distribution, which is basically a glorified Python distribution with added libraries for numerical and scientific computing. Now, since I use Debian, there is Python installed already. If I wish to use the Enthought Python for all work, how would I go about doing that?
Right now I am using a rudimentary alias like:
alias python='/usr/local/share/enthought/bin/python'
This is fine, but fails for shebang directives like #! /usr/bin/env python
in independent Python scripts. So how do I get the system to use Enthought Python (without breaking anything of course!). Thanks!