Details on this package are located in the section called “Contents of Python 3.”
The Python 3 package contains the Python development environment. It is useful for object-oriented programming, writing scripts, prototyping large programs, and developing entire applications. Python is an interpreted computer language.
![[Note]](../images/note.png)
There are two package files whose name starts with the
“python” prefix. The one to extract from is
Python-3.14.0.tar.xz (notice the
uppercase first letter).
Prepare Python for compilation:
./configure --prefix=/usr \
--enable-shared \
--without-ensurepip \
--without-static-libpythonThe meaning of the configure option:
--enable-sharedThis switch prevents installation of static libraries.
--without-ensurepipThis switch disables the Python package installer, which is not needed at this stage.
--without-static-libpythonThis switch prevents building a large, but unneeded, static library.
Compile the package:
make
![[Note]](../images/note.png)
Some Python 3 modules can't be built now because the dependencies
are not installed yet. For the ssl module,
a message Python requires a OpenSSL 1.1.1 or
newer is outputted.
The message should be ignored. Just make sure the toplevel
make command has not failed. The optional
modules are not needed now and they will be built in
Chapter 5.
Install the package:
make install
Details on this package are located in the section called “Contents of Python 3.”