开源 企业版 高校版 私有云 模力方舟 AI 队友
代码拉取完成,页面将自动刷新
捐赠
捐赠前请先登录
扫描微信二维码支付
取消
支付完成
支付提示
将跳转至支付宝完成支付
确定
取消
1 Star 0 Fork 0

source-code-analysis/python3.8.1

加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
已有帐号? 立即登录
master
分支 (1)
master
克隆/下载
克隆/下载
提示
下载代码请复制以下命令到终端执行
为确保你提交的代码身份被 Gitee 正确识别,请执行以下命令完成配置
初次使用 SSH 协议进行代码克隆、推送等操作时,需按下述提示完成 SSH 配置
1 生成 RSA 密钥
2 获取 RSA 公钥内容,并配置到 SSH公钥
在 Gitee 上使用 SVN,请访问 使用指南
使用 HTTPS 协议时,命令行会出现如下账号密码验证步骤。基于安全考虑,Gitee 建议 配置并使用私人令牌 替代登录密码进行克隆、推送等操作
Username for 'https://gitee.com': userName
Password for 'https://userName@gitee.com': # 私人令牌
master
分支 (1)
master
贡献代码
同步代码
对比差异 通过 Pull Request 同步
同步更新到分支
通过 Pull Request 同步
将会在向当前分支创建一个 Pull
Request,合入后将完成同步
File empty ...
提示: 由于 Git 不支持空文件夾,创建文件夹后会生成空的 .keep 文件
Loading...
README

Python on macOS README

Authors: Jack Jansen (2004-07)
Ronald Oussoren (2010-04)
Ned Deily (2012-06)

This document provides a quick overview of some macOS specific features in the Python distribution.

macOS specific arguments to configure

  • --enable-framework[=DIR]

    If this argument is specified the build will create a Python.framework rather than a traditional Unix install. See the section Building and using a framework-based Python on macOS for more information on frameworks.

    If the optional directory argument is specified the framework is installed into that directory. This can be used to install a python framework into your home directory:

    $ ./configure --enable-framework=/Users/ronald/Library/Frameworks
    $ make && make install
    

    This will install the framework itself in /Users/ronald/Library/Frameworks, the applications in a subdirectory of /Users/ronald/Applications and the command-line tools in /Users/ronald/bin.

  • --with-framework-name=NAME

    Specify the name for the python framework, defaults to Python. This option is only valid when --enable-framework is specified.

  • --enable-universalsdk[=PATH]

    Create a universal binary build of Python. This can be used with both regular and framework builds.

    The optional argument specifies which macOS SDK should be used to perform the build. In most cases on current systems, you do not need to specify PATH or you can just use /; the default MacOSX SDK for the active Xcode or Command Line Tools developer directory will be used. See the macOS xcrun man page for more information. Current versions of macOS and Xcode no longer install system header files in their traditional locations, like /usr/include and /System/Library/Frameworks; instead they are found within a MacOSX SDK. The Apple-supplied build tools handle this transparently and current versiona of Python now handle this as well. So it is no longer necessary, and since macOS 10.14, no longer possible to force the installation of system headers with xcode-select.

  • --with-universal-archs=VALUE

    Specify the kind of universal binary that should be created. This option is only valid when --enable-universalsdk is specified. The default is 32-bit if building with a SDK that supports PPC, otherwise defaults to intel. Note that intel means a universal build of both 32-bit and 64-bit binaries and that may not be what you want; for example, as of macOS 10.15 Catalina, 32-bit execution is no longer supported by the operating system. Thus it is best to either explicitly specify values for --with-universal-archs:

    --enable-universalsdk --with-universal-archs=intel-64

    or avoid using either.

Building and using a universal binary of Python on macOS

1. What is a universal binary

A universal binary build of Python contains object code for more than one CPU architecture. A universal macOS executable file or library combines the architecture-specific code into one file and can therefore run at native speed on all supported architectures. Universal files were introduced in macOS 10.4 to add support for Intel-based Macs to the existing PowerPC (PPC) machines. In macOS 10.5 support was extended to 64-bit Intel and 64-bit PPC architectures. It is possible to build Python with various combinations of architectures depending on the build tools and macOS version in use. Note that PPC support was removed in macOS 10.7 and 32-bit Intel support was removed in macOS 10.15. So currently as of macOS 10.15, macOS only supports one execution architecture, 64-bit Intel (x86_64).

2. How do I build a universal binary

You can enable universal binaries by specifying the "--enable-universalsdk" flag to configure:

$ ./configure --enable-universalsdk
$ make
$ make install

This flag can be used with a framework build of python, but also with a classic unix build. Universal builds were first supported with macOS 10.4 with Xcode 2.1 and the 10.4u SDK. Starting with Xcode 3 and macOS 10.5, more configurations are available.

In general, universal builds depend on specific features provided by the Apple-supplied compilers and other build tools included in Apple's Xcode development tools. You should install Xcode or the command line tools component appropriate for the macOS release you are running on. See the Python Developer's Guide (2.1 Flavors of universal binaries

It is possible to build a number of flavors of the universal binary build, the default is a 32-bit only binary (i386 and ppc) in build environments that support ppc (10.4 with Xcode 2, 10.5 and 10.6 with Xcode 3) or an Intel-32/-64-bit binary (i386 and X86_64) in build environments that do not support ppc (Xcode 4 on 10.6 and later systems). The flavor can be specified using the configure option --with-universal-archs=VALUE. The following values are available:

  • intel: i386, x86_64
  • intel-32: i386
  • intel-64: x86_64
  • 32-bit: ppc, i386
  • 3-way: i386, x86_64, ppc
  • 64-bit: ppc64, x86_64
  • all: ppc, ppc64, i386, x86_64

To build a universal binary that includes a 64-bit architecture, you must build on a system running macOS 10.5 or later. The all and 64-bit flavors can only be built with a 10.5 SDK because ppc64 support was only included with macOS 10.5. Although legacy ppc support was included with Xcode 3 on macOS 10.6, it was removed in Xcode 4, versions of which were released on macOS 10.6 and which is the standard for macOS 10.7. To summarize, the following combinations of SDKs and universal-archs flavors are available:

  • 10.4u SDK with Xcode 2 supports 32-bit only
  • 10.5 SDK with Xcode 3.1.x supports all flavors
  • 10.6 SDK with Xcode 3.2.x supports intel, intel-32, intel-64, 3-way, and 32-bit
  • 10.6 SDK with Xcode 4 supports intel, intel-32, and intel-64
  • 10.7 through 10.14 SDKs support intel, intel-32, and intel-64
  • 10.15 and later SDKs support intel-64 only

The makefile for a framework build will also install python3.x-32 binaries when the universal architecture includes at least one 32-bit architecture (that is, for all flavors but 64-bit and intel-64).

Running a specific architecture

You can run code using a specific architecture using the arch command:

$ arch -i386 python

Or to explicitly run in 32-bit mode, regardless of the machine hardware:

$ arch -i386 -ppc python

Using arch is not a perfect solution as the selected architecture will not automatically carry through to subprocesses launched by programs and tests under that Python. If you want to ensure that Python interpreters launched in subprocesses also run in 32-bit-mode if the main interpreter does, use a python3.x-32 binary and use the value of sys.executable as the subprocess Popen executable value.

Building and using a framework-based Python on macOS

1. Why would I want a framework Python instead of a normal static Python?

The main reason is because you want to create GUI programs in Python. With the exception of X11/XDarwin-based GUI toolkits all GUI programs need to be run from a macOS application bundle (".app").

While it is technically possible to create a .app without using frameworks you will have to do the work yourself if you really want this.

A second reason for using frameworks is that they put Python-related items in only two places: "/Library/Framework/Python.framework" and "/Applications/Python <VERSION>" where <VERSION> can be e.g. "3.8", "2.7", etc. This simplifies matters for users installing Python from a binary distribution if they want to get rid of it again. Moreover, due to the way frameworks work, usera without admin privileges can install a binary distribution in their home directory without recompilation.

2. How does a framework Python differ from a normal static Python?

In everyday use there is no difference, except that things are stored in a different place. If you look in /Library/Frameworks/Python.framework you will see lots of relative symlinks, see the Apple documentation for details. If you are used to a normal unix Python file layout go down to Versions/Current and you will see the familiar bin and lib directories.

3. Do I need extra packages?

Yes, probably. If you want Tkinter support you need to get the macOS AquaTk distribution, this is installed by default on macOS 10.4 or later. Be aware, though, that the Cocoa-based AquaTk's supplied starting with macOS 10.6 have proven to be unstable. If possible, you should consider installing a newer version before building on macOS 10.6 or later, such as the ActiveTcl 8.6. See 4. How do I build a framework Python?

This directory contains a Makefile that will create a couple of python-related applications (full-blown macOS .app applications, that is) in "/Applications/Python <VERSION>", and a hidden helper application Python.app inside the Python.framework, and unix tools including "python" into /usr/local/bin. In addition it has a target "installmacsubtree" that installs the relevant portions of the Mac subtree into the Python.framework.

It is normally invoked indirectly through the main Makefile, as the last step in the sequence

  1. ./configure --enable-framework
  2. make
  3. make install

This sequence will put the framework in /Library/Framework/Python.framework, the applications in /Applications/Python <VERSION> and the unix tools in /usr/local/bin.

Installing in another place, for instance $HOME/Library/Frameworks if you have no admin privileges on your machine, is possible. This can be accomplished by configuring with --enable-framework=$HOME/Library/Frameworks. The other two directories will then also be installed in your home directory, at $HOME/Applications/Python-<VERSION> and $HOME/bin.

If you want to install some part, but not all, read the main Makefile. The frameworkinstall is composed of a couple of sub-targets that install the framework itself, the Mac subtree, the applications and the unix tools.

There is an extra target frameworkinstallextras that is not part of the normal frameworkinstall which installs the Tools directory into "/Applications/Python <VERSION>", this is useful for binary distributions.

What do all these programs do?

"IDLE.app" is an integrated development environment for Python: editor, debugger, etc.

"Python Launcher.app" is a helper application that will handle things when you double-click a .py, .pyc or .pyw file. For the first two it creates a Terminal window and runs the scripts with the normal command-line Python. For the latter it runs the script in the Python.app interpreter so the script can do GUI-things. Keep the Option key depressed while dragging or double-clicking a script to set runtime options. These options can be set persistently through Python Launcher's preferences dialog.

The program pythonx.x runs python scripts from the command line. Previously, various compatibility aliases were also installed, including pythonwx.x which in early releases of Python on macOS was required to run GUI programs. As of 3.4.0, the pythonwx.x aliases are no longer installed.

How do I create a binary distribution?

Download and unpack the source release from Configure warnings

The configure script sometimes emits warnings like the one below:

configure: WARNING: libintl.h: present but cannot be compiled
configure: WARNING: libintl.h: check for missing prerequisite headers?
configure: WARNING: libintl.h: see the Autoconf documentation
configure: WARNING: libintl.h: section "Present But Cannot Be Compiled"
configure: WARNING: libintl.h: proceeding with the preprocessor's result
configure: WARNING: libintl.h: in the future, the compiler will take precedence
configure: WARNING: ## -------------------------------------- ##
configure: WARNING: ## Report this to http://bugs.python.org/ ##
configure: WARNING: ## -------------------------------------- ##

This almost always means you are trying to build a universal binary for Python and have libraries in /usr/local that don't contain the required architectures. Temporarily move /usr/local aside to finish the build.

Uninstalling a framework install, including the binary installer

Uninstalling a framework can be done by manually removing all bits that got installed. That's true for both installations from source and installations using the binary installer. macOS does not provide a central uninstaller.

The main bit of a framework install is the framework itself, installed in /Library/Frameworks/Python.framework. This can contain multiple versions of Python, if you want to remove just one version you have to remove the version-specific subdirectory: /Library/Frameworks/Python.framework/Versions/X.Y. If you do that, ensure that /Library/Frameworks/Python.framework/Versions/Current is a symlink that points to an installed version of Python.

A framework install also installs some applications in /Applications/Python X.Y,

And lastly a framework installation installs files in /usr/local/bin, all of them symbolic links to files in /Library/Frameworks/Python.framework/Versions/X.Y/bin.

Resources

README
未知许可证
查看未知开源许可协议
取消

发行版

暂无发行版

贡献者

全部

近期动态

不能加载更多了
编辑仓库简介
简介内容
主页
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/python_sourcecode/python3.8.1.git
git@gitee.com:python_sourcecode/python3.8.1.git
python_sourcecode
python3.8.1
python3.8.1
master
点此查找更多帮助

搜索帮助

评论
仓库举报
回到顶部
登录提示
该操作需登录 Gitee 帐号,请先登录后再操作。
立即登录
没有帐号,去注册

AltStyle によって変換されたページ (->オリジナル) /