This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Missing symlink:Current after Mac OS X 3.3.2 package installation
Type: behavior Stage: resolved
Components: Installation, macOS Versions: Python 3.4
process
Status: closed Resolution: wont fix
Dependencies: Superseder:
Assigned To: ronaldoussoren Nosy List: gavan, ned.deily, r.david.murray, ronaldoussoren
Priority: normal Keywords:

Created on 2013-06-02 08:29 by gavan, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Messages (8)
msg190474 - (view) Author: Gavan Schneider (gavan) Date: 2013-06-02 08:29
There is a missing symlink.

Context:
Installed package:
<http://www.python.org/ftp/python/3.3.2/python-3.3.2-macosx10.6.dmg>
with no apparent problems onto a 'clean' system, i.e., no other python packages other than OS X 10.8.3 defaults.

Found the following in /Library/Frameworks/Python.framework:
pendari:Python.framework postgres$ ls -las
total 24
0 drwxr-xr-x  3 root  wheel  204 14 May 06:49 .
0 drwxr-xr-x  8 root  wheel  374  2 Jun 17:06 ..
8 lrwxr-xr-x  1 root  wheel   24  2 Jun 17:06 Headers -> Versions/Current/Headers
8 lrwxr-xr-x  1 root  wheel   23  2 Jun 17:06 Python -> Versions/Current/Python
8 lrwxr-xr-x  1 root  wheel   26  2 Jun 17:06 Resources -> Versions/Current/Resources
0 drwxr-xr-x  3 root  wheel  102 14 May 06:54 Versions

However:
pendari:Versions postgres$ ls -las
total 0
0 drwxr-xr-x  3 root  wheel  102 14 May 06:54 .
0 drwxr-xr-x  3 root  wheel  204 14 May 06:49 ..
0 drwxrwxr-x  7 root  admin  306 14 May 06:54 3.3

Specifically we are missing the following from .../Versions:
8 lrwxr-xr-x  1 root  wheel    3  2 Jun 17:27 Current -> 3.3

to make all the other symlinks work as intended.

This also implies the ~/.bash_profile patch would be improved if the existing:
    PATH="/Library/Frameworks/Python.framework/Versions/3.3/bin:${PATH}"
was replaced by:
    PATH="/Library/Frameworks/Python.framework/Versions/Current/bin:${PATH}"

Apologies if this has already been reported. It is my first report so I could easily have missed something: I searched with terms "installer mac".

Regards
Gavan Schneider
msg190490 - (view) Author: Ned Deily (ned.deily) * (Python committer) Date: 2013-06-02 16:16
That behavior of the OS X installer is by design. Currently, the "Current" link is only set for Python 2 installations, not Python 3 ones.  While that may have made sense in the early days of Python 3 (assuming there would be mixed installations of both Python 3 and Python 2 to the same framework), that is probably no longer a good idea.  Considering the difference between Python 2 and 3 at the API level and that one of the reasons for installing as a framework should be to simplify linking with Python libraries, I've been thinking that it might be a good idea to have Python 3 install in its own framework, say Python3.  Or some other arrangement.  As it stands today, 'cc ... -framework Python ...' isn't usable for Python 3 out of the box.
msg190505 - (view) Author: Gavan Schneider (gavan) Date: 2013-06-02 21:11
Appreciate the comment about potential problems with mixed installations of python3 and python2. And note that along these lines there is no attempt by the installer to symlink python -> python3 (which could have nasty side effects if the full path was not specified in system applications).

However there is still a problem: the installer is creating three dead symlinks, which is not correct.

Agree putting Python3 into its own /Library/Frameworks/Python3.framework would be a better way to go.
msg190530 - (view) Author: Ronald Oussoren (ronaldoussoren) * (Python committer) Date: 2013-06-03 09:50
Linking with "-framework Python" is always a bad idea because you have no control over which version of Python you link with other than by changing global system state (the Current link). Also: include files aren't included using the framework conventions (e.g. we use "#include <Python.h>", not "#include <Python/Python.h>").

I'd prefer to remove the Current link from "from source" installs instead adding them to the py3k installer, that makes is clearer that you are not supposed to use "-framework Python".

I'm also not too keen on renaming the Python framework for Python 3.4.
msg190536 - (view) Author: Gavan Schneider (gavan) Date: 2013-06-03 11:05
A lot of this is past my level but speaking from my level I just want packages to be consistent, i.e., if there is a symlink it should point to something (preferably useful) not dangle as is the case now.

Also I want an installed version to "look the same" no matter what version it might be. Specifically the version number should only occur once in the file tree. This then allows me to specify ***at the system level*** what I want when invoking (via a Current or similar link) my postgres and other build scripts, specifically so they don't need to be hand crafted just so they build against new new and latest install.

If I ever get to the stage where I am building to a specific version that's not the global selection I can do that by taking proper steps (but that's not what I usually want to do after installing a new version).

Continuing in the vein of one only mention of the version number in the package tree: why is there a python3.3 folder inside .../Pyton.framework/Versions/3.3/lib? Won't lib/Python3.4 stuff get put in its own Version?

As for the reluctance to rename the package for 3.4. Wont it be Python3 and the rename could just as logically be done for the current release:
  /Library/Frameworks/
    Python.framework/... # all the Pyton 2 stuff
    Python3.famework
      Versions
        3.3/...
        3.4/...
        Current -> 3.4
        ...

Finally there seems to be a convention with all the other installed packages for a "Current" symlink (note especially Tcl/Tk) to do something useful within their respective "Versions" folder. Is it too much to suggest that Python just follow this convention (albeit with the package name changed to pyton3 to prevent potential conflicts)?

Anyway, please excuse my drifting so far from a simple report of a broken and/or missing installer link :)

Regards
Gavan Schneider
msg190537 - (view) Author: Ronald Oussoren (ronaldoussoren) * (Python committer) Date: 2013-06-03 11:43
There is a python3.3 in .../Python.framework/Versions/3.3/lib because .../Python.framework/Versions/3.3 is basicly a regular unix install with some trivial changes (in particular, there is a Python shared library in the root of the tree, there is a Python.app and bin/python isn't the real interpreter but a stub).

Keeping the framework close to a regular unix install is an explicit design choice, it minimizes the difference from those unix installs and reduces the amount of needless incompatibilities (for example with scripts that run on unix-like systems and assume a particular layout of sys.prefix)

I try to avoid relying on the Current symlink because it depends on the order in which packages are installed, for example when you have two version of Python installed and update one of them the Current link may change even if you might not want to.  Futhermore the Current link can only be changed by users with elevated privileges (an "admin" account or root).

Again, I don't think renaming the framework for Python 3 would be useful and even if it were done it could only be done for Python 3.4 al existing releases of Py3k would still use Python.framework because changing the framework name will break existing installations when installing an update with a changed framework name.
msg266717 - (view) Author: R. David Murray (r.david.murray) * (Python committer) Date: 2016-05-30 20:39
Ned, can this issue be closed or is there still something to discuss here?
msg267333 - (view) Author: Ned Deily (ned.deily) * (Python committer) Date: 2016-06-04 22:27
David, I think we are not going to change the Current symlink behavior at this point so we might as well close this issue.  We may decide to address the need to pick which version to link with in a different manner later.
History
Date User Action Args
2022-04-11 14:57:46adminsetgithub: 62317
2018-06-08 04:05:57ned.deilylinkissue33794 superseder
2016-06-04 22:27:50ned.deilysetstatus: open -> closed
resolution: wont fix
messages: + msg267333

stage: resolved
2016-05-30 20:39:57r.david.murraysetnosy: + r.david.murray
messages: + msg266717
2013-06-03 11:43:07ronaldoussorensetmessages: + msg190537
2013-06-03 11:05:18gavansetmessages: + msg190536
2013-06-03 09:50:51ronaldoussorensetmessages: + msg190530
2013-06-02 21:11:56gavansetmessages: + msg190505
2013-06-02 16:16:30ned.deilysetnosy: + ned.deily

messages: + msg190490
versions: + Python 3.4, - Python 3.3
2013-06-02 08:39:37gavansettitle: Missing symlink:Currnet after Mac OS X 3.3.2 package installation -> Missing symlink:Current after Mac OS X 3.3.2 package installation
2013-06-02 08:29:43gavancreate