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

天高云淡/48_python_study

加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
已有帐号? 立即登录
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
项目仓库所选许可证以仓库主分支所使用许可证为准
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
Quick Start Guide
-----------------
1. Install Microsoft Visual Studio 2017 with Python workload and
 Python native development component.
1a. Optionally install Python 3.6 or later. If not installed,
 get_externals.bat (via build.bat) will download and use Python via
 NuGet.
2. Run "build.bat" to build Python in 32-bit Release configuration.
3. (Optional, but recommended) Run the test suite with "rt.bat -q".
Building Python using Microsoft Visual C++
------------------------------------------
This directory is used to build CPython for Microsoft Windows NT version
6.0 or higher (Windows Vista, Windows Server 2008, or later) on 32 and 64
bit platforms. Using this directory requires an installation of
Microsoft Visual Studio 2017 (MSVC 14.1) with the *Python workload* and
its optional *Python native development* component selected. (For
command-line builds, Visual Studio 2015 may also be used.)
Building from the command line is recommended in order to obtain any
external dependencies. To build, simply run the "build.bat" script without
any arguments. After this succeeds, you can open the "pcbuild.sln"
solution in Visual Studio to continue development.
To build an installer package, refer to the README in the Tools/msi folder.
The solution currently supports two platforms. The Win32 platform is
used to build standard x86-compatible 32-bit binaries, output into the
win32 sub-directory. The x64 platform is used for building 64-bit AMD64
(aka x86_64 or EM64T) binaries, output into the amd64 sub-directory.
The Itanium (IA-64) platform is no longer supported.
Four configuration options are supported by the solution:
Debug
 Used to build Python with extra debugging capabilities, equivalent
 to using ./configure --with-pydebug on UNIX. All binaries built
 using this configuration have "_d" added to their name:
 python38_d.dll, python_d.exe, parser_d.pyd, and so on. Both the
 build and rt (run test) batch files in this directory accept a -d
 option for debug builds. If you are building Python to help with
 development of CPython, you will most likely use this configuration.
PGInstrument, PGUpdate
 Used to build Python in Release configuration using PGO, which
 requires Premium Edition of Visual Studio. See the "Profile
 Guided Optimization" section below for more information. Build
 output from each of these configurations lands in its own
 sub-directory of this directory. The official Python releases may
 be built using these configurations.
Release
 Used to build Python as it is meant to be used in production
 settings, though without PGO.
Building Python using the build.bat script
----------------------------------------------
In this directory you can find build.bat, a script designed to make
building Python on Windows simpler. This script will use the env.bat
script to detect either Visual Studio 2017 or 2015, either of
which may be used to build Python. Currently Visual Studio 2017 is
officially supported.
By default, build.bat will build Python in Release configuration for
the 32-bit Win32 platform. It accepts several arguments to change
this behavior, try `build.bat -h` to learn more.
C Runtime
---------
Visual Studio 2017 uses version 14.0 of the C runtime (vcruntime140).
The executables no longer use the "Side by Side" assemblies used in
previous versions of the compiler. This simplifies distribution of
applications.
The run time libraries are available under the redist folder of your
Visual Studio distribution. For more info, see the Readme in the
redist folder.
Sub-Projects
------------
The CPython project is split up into several smaller sub-projects which
are managed by the pcbuild.sln solution file. Each sub-project is
represented by a .vcxproj and a .vcxproj.filters file starting with the
name of the sub-project. These sub-projects fall into a few general
categories:
The following sub-projects represent the bare minimum required to build
a functioning CPython interpreter. If nothing else builds but these,
you'll have a very limited but usable python.exe:
pythoncore
 .dll and .lib
python
 .exe
These sub-projects provide extra executables that are useful for running
CPython in different ways:
pythonw
 pythonw.exe, a variant of python.exe that doesn't open a Command
 Prompt window
pylauncher
 py.exe, the Python Launcher for Windows, see
 http://docs.python.org/3/using/windows.html#launcher
pywlauncher
 pyw.exe, a variant of py.exe that doesn't open a Command Prompt
 window
_testembed
 _testembed.exe, a small program that embeds Python for testing
 purposes, used by test_capi.py
These are miscellaneous sub-projects that don't really fit the other
categories:
_freeze_importlib
 _freeze_importlib.exe, used to regenerate Python\importlib.h after
 changes have been made to Lib\importlib\_bootstrap.py
pyshellext
 pyshellext.dll, the shell extension deployed with the launcher
python3dll
 python3.dll, the PEP 384 Stable ABI dll
xxlimited
 builds an example module that makes use of the PEP 384 Stable ABI,
 see Modules\xxlimited.c
The following sub-projects are for individual modules of the standard
library which are implemented in C; each one builds a DLL (renamed to
.pyd) of the same name as the project:
_asyncio
_ctypes
_ctypes_test
_decimal
_elementtree
_hashlib
_msi
_multiprocessing
_overlapped
_socket
_testbuffer
_testcapi
_testconsole
_testimportmultiple
_testmultiphase
_tkinter
pyexpat
select
unicodedata
winsound
The following Python-controlled sub-projects wrap external projects.
Note that these external libraries are not necessary for a working
interpreter, but they do implement several major features. See the
"Getting External Sources" section below for additional information
about getting the source for building these libraries. The sub-projects
are:
_bz2
 Python wrapper for version 1.0.8 of the libbzip2 compression library
 Homepage:
 http://www.bzip.org/
_lzma
 Python wrapper for version 5.2.2 of the liblzma compression library
 Homepage:
 http://tukaani.org/xz/
_ssl
 Python wrapper for version 1.1.1u of the OpenSSL secure sockets
 library, which is downloaded from our binaries repository at
 https://github.com/python/cpython-bin-deps.
 Homepage:
 http://www.openssl.org/
 Building OpenSSL requires Perl on your path, and can be performed by
 running PCbuild\prepare_ssl.bat. This will retrieve the version of
 the sources matched to the current commit from the OpenSSL branch
 in our source repository at
 https://github.com/python/cpython-source-deps.
 To use an alternative build of OpenSSL completely, you should replace
 the files in the externals/openssl-bin-<version> folder with your own.
 As long as this folder exists, its contents will not be downloaded
 again when building.
_sqlite3
 Wraps SQLite 3.35.5, which is itself built by sqlite3.vcxproj
 Homepage:
 http://www.sqlite.org/
_tkinter
 Wraps version 8.6.6 of the Tk windowing system, which is downloaded
 from our binaries repository at
 https://github.com/python/cpython-bin-deps.
 Homepage:
 http://www.tcl.tk/
 Building Tcl and Tk can be performed by running
 PCbuild\prepare_tcltk.bat. This will retrieve the version of the
 sources matched to the current commit from the Tcl and Tk branches
 in our source repository at
 https://github.com/python/cpython-source-deps.
 The two projects install their respective components in a
 directory alongside the source directories called "tcltk" on
 Win32 and "tcltk64" on x64. They also copy the Tcl and Tk DLLs
 into the current output directory, which should ensure that Tkinter
 is able to load Tcl/Tk without having to change your PATH.
Getting External Sources
------------------------
The last category of sub-projects listed above wrap external projects
Python doesn't control, and as such a little more work is required in
order to download the relevant source files for each project before they
can be built. However, a simple script is provided to make this as
painless as possible, called "get_externals.bat" and located in this
directory. This script extracts all the external sub-projects from
 https://github.com/python/cpython-source-deps
and
 https://github.com/python/cpython-bin-deps
via a Python script called "get_external.py", located in this directory.
If Python 3.6 or later is not available via the "py.exe" launcher, the
path or command to use for Python can be provided in the PYTHON_FOR_BUILD
environment variable, or get_externals.bat will download the latest
version of NuGet and use it to download the latest "pythonx86" package
for use with get_external.py. Everything downloaded by these scripts is
stored in ..\externals (relative to this directory).
It is also possible to download sources from each project's homepage,
though you may have to change folder names or pass the names to MSBuild
as the values of certain properties in order for the build solution to
find them. This is an advanced topic and not necessarily fully
supported.
The get_externals.bat script is called automatically by build.bat
unless you pass the '-E' option.
Profile Guided Optimization
---------------------------
The solution has two configurations for PGO. The PGInstrument
configuration must be built first. The PGInstrument binaries are linked
against a profiling library and contain extra debug information. The
PGUpdate configuration takes the profiling data and generates optimized
binaries.
The build_pgo.bat script automates the creation of optimized binaries.
It creates the PGI files, runs the unit test suite or PyBench with the
PGI python, and finally creates the optimized files.
See
 http://msdn.microsoft.com/en-us/library/e7k32f4k(VS.140).aspx
for more on this topic.
Static library
--------------
The solution has no configuration for static libraries. However it is
easy to build a static library instead of a DLL. You simply have to set
the "Configuration Type" to "Static Library (.lib)" and alter the
preprocessor macro "Py_ENABLE_SHARED" to "Py_NO_ENABLE_SHARED". You may
also have to change the "Runtime Library" from "Multi-threaded DLL
(/MD)" to "Multi-threaded (/MT)".
Visual Studio properties
------------------------
The PCbuild solution makes use of Visual Studio property files (*.props)
to simplify each project. The properties can be viewed in the Property
Manager (View -> Other Windows -> Property Manager) but should be
carefully modified by hand.
The property files used are:
 * python (versions, directories and build names)
 * pyproject (base settings for all projects)
 * openssl (used by projects dependent upon OpenSSL)
 * tcltk (used by _tkinter, tcl, tk and tix projects)
The pyproject property file defines all of the build settings for each
project, with some projects overriding certain specific values. The GUI
doesn't always reflect the correct settings and may confuse the user
with false information, especially for settings that automatically adapt
for diffirent configurations.
举报
举报成功
我们将于2个工作日内通过站内信反馈结果给你!
请认真填写举报原因,尽可能描述详细。
请选择举报类型
取消
发送
误判申诉

此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。

如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。

取消
提交

简介

取消

发行版

暂无发行版

贡献者

全部

近期动态

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

搜索帮助

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

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