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.
Created on 2008年07月19日 04:07 by erickt, last changed 2022年04月11日 14:56 by admin. This issue is now closed.
| Messages (2) | |||
|---|---|---|---|
| msg70004 - (view) | Author: Erick Tryzelaar (erickt) | Date: 2008年07月19日 04:07 | |
Hello again! It looks like doing "make frameworkinstall maninstall" isn't creating "Python.framework/Versions/3.0/Resources/Python.app", so when I try to run python it errors out with: "python3.0: execv: /opt/local/Library/Frameworks/Python.framework/Versions/3.0/Resources/Py thon.app/Contents/MacOS/Python: No such file or directory". In order to get that file created, I need to manually run "cd Mac && make install_Python". This patch fixes it, but I'm not sure if this is the proper fix: --- Mac/Makefile.in.old 2008年07月18日 20:59:44.000000000 -0700 +++ Mac/Makefile.in 2008年07月18日 20:57:44.000000000 -0700 @@ -46,7 +46,7 @@ compileall=$(srcdir)/../Lib/compileall.py installapps: install_PythonLauncher install_IDLE checkapplepython install_pythonw \ - install_versionedtools + install_versionedtools install_Python installapps4way: install_Python4way install_BuildApplet install_PythonLauncher install_IDLE install_pythonw4way install_versionedtools |
|||
| msg70010 - (view) | Author: Georg Brandl (georg.brandl) * (Python committer) | Date: 2008年07月19日 09:58 | |
Fixed in r65130. |
|||
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2022年04月11日 14:56:36 | admin | set | github: 47664 |
| 2008年07月19日 09:58:19 | georg.brandl | set | status: open -> closed resolution: fixed messages: + msg70010 nosy: + georg.brandl |
| 2008年07月19日 04:07:31 | erickt | create | |