<br><br><div class="gmail_quote">On Sat, May 9, 2009 at 4:30 AM, Raoul Gough <span dir="ltr"><<a href="mailto:bvdmyrby@jyxk16274849.net">bvdmyrby@jyxk16274849.net</a>></span> wrote:<br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
I just installed MacPython 3.0.1 (woot!) but the installer didn't seem<br>
to do an absolutely complete job. According to the ReadMe.txt, "The<br>
installer puts [...] command-line tools in /usr/local/bin [...]". This<br>
didn't happen - even after the install reported Success, there were no<br>
python files or symlinks under /usr/local/bin.<br>
<br>
Also, I'm guessing there should have been a symlink to the current<br>
version under /Library/Frameworks/Python.framework/Versions, which<br>
wasn't there either:<br>
<br>
$ cd /Library/Frameworks/Python.framework<br>
$ ls -l Python<br>
lrwxr-xr-x  1 root  admin  23 May  9 08:34 Python -> Versions/Current/Python<br>
$ ls -l Versions/Current<br>
ls: Versions/Current: No such file or directory<br>
<br>
So I fixed this all up as follows:<br>
<br>
$ cd /Library/Frameworks/Python.framework/Versions<br>
$ sudo ln -s 3.0 Current<br>
$ cd /usr/local/bin<br>
$ sudo ln -s $(find /Library/Frameworks/Python.framework/Versions/Current/bin -type f) .<br>
<br>
So did something go wrong with the installer, or is it all supposed to<br>
work somehow differently?<br>
</blockquote><div><br>Because Python 3 breaks compatibility with Python 2, the installers don't install it as the default. The executable should be at /usr/local/bin/python3.0<br><br> </div><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
<br>
--<br>
Raoul Gough.<br>
<font color="#888888">--<br>
<a href="http://mail.python.org/mailman/listinfo/python-list" target="_blank">http://mail.python.org/mailman/listinfo/python-list</a><br>
</font></blockquote></div><br>