将使用 Psyco 的 Python 应用程序移植到 Mac
我正在尝试将我的 Python 应用程序从 Windows 移植到 Mac。 我的应用程序使用 Psyco。 具体如何在 Mac 上安装 Psyco?
请记住,我是 Mac 新手。
I'm trying to port my Python app from Windows to Mac. My app uses Psyco. How exactly do I install Psyco on Mac?
Keep in mind I'm a Mac newbie.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
首先,你需要安装Apple的XCode(嗯,具体来说你只需要它附带的gcc编译器,但安装整个东西更简单;-)。 如果您想要最新最好的,请注册最低(免费!-)级别的 ADC 并下载从那里; 否则,它应该位于您的 OSX DVD 中(或者,根据 OSX 级别以及您安装操作系统的方式,安装程序可能已经位于您的硬盘上)。
要验证 XCode 是否已正确安装,请在 Terminal.app 中输入
gcc
,您应该会看到一条消息,例如i686-apple-darwin9-gcc-4.0.1: no input files
。一旦成功,请从 下载 psyco 的源代码在这里,解压它们(您可能可以在下载过程中完成它,最坏的情况是在 cd'ing 到 Terminal.app 后使用
tar xzf psyco-1.6-src.tar.gz
将 tar.gz 下载到的目录),cd 到新的 psyco-1.6 目录。然后在 Terminal.app shell 提示符下执行
python setup.py install
。 根据您安装的具体方式,您可能需要使用 sudo python setup.py install 并提供密码才能写入系统目录。First, you need Apple's XCode installed (well, specifically you only need the gcc compiler that comes with it, but installing the whole thing is simpler;-). If you want the latest and greatest, sign up for ADC at the lowest (free!-) level and download from there; otherwise it should be in your OSX DVD (or, depending on OSX level and how you installed the OS, the installer might already be on your hard disk).
To verify XCode's properly installed, at a Terminal.app enter
gcc
and you should see a message such asi686-apple-darwin9-gcc-4.0.1: no input files
.Once that works, download psyco's sources from here, unpack them (you probably can get it done during the download, worst case use
tar xzf psyco-1.6-src.tar.gz
in Terminal.app after cd'ing to the directory you've downloaded that tar.gz to), cd into the new psyco-1.6 directory.Then do
python setup.py install
at the Terminal.app shell prompt. Depending on how exactly you installed things, you may need to usesudo python setup.py install
and give your password to enable writing into the system directories.新闻页面显示 Mac 移植仍在编写中。 了解如何使用 Make 从源代码安装。 应用该补丁、编译并安装。
The News page shows that a Mac port is still being written. Learn how to install from source code using Make. Apply that patch, compile, and install.