id,summary,reporter,owner,description,type,status,priority,milestone,component,version,resolution,keywords,cc,port 19575,python 2to3 is not in /opt/local/bin,julien.thewys@…,blb@…,"Hi, I recently installed ""python26 @2.6.2"" and ""python30 @3.0.1"". Both come with the 2to3 program but for some reason there is no link to 2to3 in /opt/local/bin. I did not have a look at the install script but I suppose the link creation is missing (maybe because the filename starts with a digit instead of a letter). If you have python2.6 and python3.0, executing the script below will display ""ls: /opt/local/bin/2to3*: No such file or directory"" twice, but should presumably not display anything. {{{ #!/bin/sh for file in $(find /opt/local/Library/Frameworks/Python.framework/Versions/2.6/bin -type f); do ls -al /opt/local/bin/$(basename ""$file"")* | grep ""No such file"" done for file in $(find /opt/local/Library/Frameworks/Python.framework/Versions/3.0/bin -type f); do ls -al /opt/local/bin/$(basename ""$file"")* | grep ""No such file"" done }}} ",defect,closed,Normal,,ports,1.7.1,fixed,,MarcusCalhoun-Lopez,python26 python30