3 | | edit: I tried it both with bash and zsh, if that matters. no luck |
| 3 | edit: I tried it both with bash and zsh, if that matters. no luck. |
| 4 | |
| 5 | edit2: In general, there seems to be some inconsistency with respect to the select command: |
| 6 | |
| 7 | |
| 8 | {{{ |
| 9 | port select --summary |
| 10 | Name Selected Options |
| 11 | ==== ======== ======= |
| 12 | cython cython38 cython38 none |
| 13 | gcc mp-gcc10 mp-gcc10 none |
| 14 | ipython py38-ipython py38-ipython none |
| 15 | ipython3 py38-ipython py38-ipython none |
| 16 | nosetests nosetests38 nosetests38 none |
| 17 | pip pip38 pip3-apple pip38 none |
| 18 | python python38 python27-apple python38 python38-apple none |
| 19 | python3 python38 python38 python38-apple none |
| 20 | }}} |
| 21 | |
| 22 | and then checking each with type: |
| 23 | |
| 24 | |
| 25 | |
| 26 | {{{ |
| 27 | cython is /opt/local/bin/cython |
| 28 | gcc is /usr/bin/gcc |
| 29 | ipython is /opt/local/bin/ipython |
| 30 | ipython3 is /opt/local/bin/ipython3 |
| 31 | nosetests is /opt/local/bin/nosetests |
| 32 | pip is /opt/local/bin/pip |
| 33 | python is /usr/bin/python |
| 34 | python3 is /usr/bin/python3 |
| 35 | }}} |
| 36 | |
| 37 | As you can see, gcc, and the Python interpreters follow the wrong paths. |
| 38 | |
| 39 | |