如何在 Mac 上安装/组织 python 模块?
我有一个 mbp,但我一直很懒,到目前为止一直在使用 ubuntu 进行 python 开发,因为它很容易安装模块等。
如何在 mac 上安装模块?以及存储所有 .py 文件的最佳实践?
I have a mbp, but I've been lazy and have been using ubuntu for my python development thus far b/c its so easy to install modules etc.
How do you install modules on a mac? And best-practises with storing all .py files?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
请参阅我对类似问题的冗长回答 这里。最重要的是,如果您熟悉并熟悉 Ubuntu 上的包管理环境,您可能需要使用像 MacPorts 或 Fink 或 Homebrew 在 OS X 上。但是存在细微的差异,因为与 Ubuntu 不同,这不是系统范围的包管理器,因此您必须了解并与之共存Apple 在 OS X 中提供的东西或通过安装多个 Python 提供的东西。
See my lengthy answer to a similar question here. Bottom line, if you are familiar and comfortable with a package-managed environment like on Ubuntu, you may want to use a package manager like MacPorts or Fink or Homebrew on OS X. But there are subtle differences since, unlike Ubuntu, this is not the system-wide package manager so you have to be aware of and co-exist with things supplied by Apple in OS X or by having multiple Python installations.
使用高级语言的好处之一是它们在它们支持的每个平台上的功能基本相同。 Python 也不例外。安装模块的方式与在 Linux 上相同:使用 easy_install 或 pip,查看它们 http://pypi .python.org/pypi/setuptools http://pypi.python.org/pypi/点
One of the perks of using high level languages is that they function mostly the same on each platform they support. Python is no diffent. You install modules the same way you do on Linux: using easy_install or pip, check them out http://pypi.python.org/pypi/setuptools http://pypi.python.org/pypi/pip