source: general/prog/python3.xml@ eede1a3

11.0 11.1 11.2 11.3 12.0 12.1 kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts lazarus lxqt plabs/newcss plabs/python-mods python3.11 qt5new rahul/power-profiles-daemon renodr/vulkan-addition trunk upgradedb xry111/intltool xry111/llvm18 xry111/soup3 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since eede1a3 was 229d069, checked in by Douglas R. Reno <renodr@…>, 3 years ago

Update to gcc-11.1.0
Update to systemd-248
Update to Python-3.9.5

  • Property mode set to 100644
File size: 11.4 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3 "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
4 <!ENTITY % general-entities SYSTEM "../../general.ent">
5 %general-entities;
6
7 <!ENTITY python3-download-http
8 "https://www.python.org/ftp/python/&python3-version;/Python-&python3-version;.tar.xz">
9 <!ENTITY python3-download-ftp " ">
10 <!ENTITY python3-md5sum "71f7ada6bec9cdbf4538adc326120cfd">
11 <!ENTITY python3-size "18 MB">
12 <!ENTITY python3-buildsize "355 MB (add 47 MB for tests)">
13 <!ENTITY python3-time "0.5 SBU (using parallelism=4; add 2.5 SBU for tests)">
14 <!--
15 Note: Size does not reflect docs that were install in LFS.
16
17 <!ENTITY python3htmldoc-download-http
18 "https://docs.python.org/ftp/python/doc/&python3-version;/python-&python3-version;-docs-html.tar.bz2"> -->
19]>
20
21<sect1 id="python3" xreflabel="Python-&python3-version;">
22 <?dbhtml filename="python3.html" ?>
23
24 <sect1info>
25 <date>$Date$</date>
26 </sect1info>
27
28 <title>Python-&python3-version;</title>
29
30 <indexterm zone="python3">
31 <primary sortas="a-Python3">Python3</primary>
32 </indexterm>
33
34 <sect2 role="package">
35 <title>Introduction to Python 3</title>
36
37 <para>
38 The <application>Python 3</application> package contains the
39 <application>Python</application> development environment.
40 This is useful for object-oriented programming, writing scripts,
41 prototyping large programs or developing entire applications.
42 </para>
43
44 <note>
45 <para>
46 <application>Python 3</application> was installed in LFS.
47 The only reason to rebuild it here is if optional modules
48 are needed.
49 </para>
50 </note>
51
52 &lfs101_checked;
53
54 <bridgehead renderas="sect3">Package Information</bridgehead>
55 <itemizedlist spacing="compact">
56 <listitem>
57 <para>
58 Download (HTTP): <ulink url="&python3-download-http;"/>
59 </para>
60 </listitem>
61 <listitem>
62 <para>
63 Download (FTP): <ulink url="&python3-download-ftp;"/>
64 </para>
65 </listitem>
66 <listitem>
67 <para>
68 Download MD5 sum: &python3-md5sum;
69 </para>
70 </listitem>
71 <listitem>
72 <para>
73 Download size: &python3-size;
74 </para>
75 </listitem>
76 <listitem>
77 <para>
78 Estimated disk space required: &python3-buildsize;
79 </para>
80 </listitem>
81 <listitem>
82 <para>
83 Estimated build time: &python3-time;
84 </para>
85 </listitem>
86 </itemizedlist>
87
88 <bridgehead renderas="sect3">Python 3 Dependencies</bridgehead>
89
90 <bridgehead renderas="sect4">Recommended</bridgehead>
91 <para role="recommended">
92 <xref linkend="sqlite"/> (required if building firefox or thunderbird)
93 </para>
94
95 <bridgehead renderas="sect4">Optional</bridgehead>
96 <para role="optional">
97 <xref linkend="bluez"/>,
98 <xref linkend="gdb"/> (required for some tests),
99 <xref linkend="valgrind"/>, and
100 <ulink url="http://www.bytereef.org/mpdecimal">libmpdec</ulink>
101 </para>
102
103 <bridgehead renderas="sect4">Optional (For Additional Modules)</bridgehead>
104 <para role="optional">
105 <xref linkend="db"/> and
106 <xref linkend="tk"/>
107 </para>
108
109 <para condition="html" role="usernotes">User Notes:
110 <ulink url="&blfs-wiki;/Python3"/>
111 </para>
112 </sect2>
113
114 <sect2 role="installation">
115 <title>Installation of Python 3</title>
116
117 <para>
118 Install <application>Python 3</application> by running the following
119 commands:
120 </para>
121
122<screen><userinput>CXX="/usr/bin/g++" \
123./configure --prefix=/usr \
124 --enable-shared \
125 --with-system-expat \
126 --with-system-ffi \
127 --with-ensurepip=yes &amp;&amp;
128make</userinput></screen>
129
130 <para>
131 To test the result, issue <command>make test</command>.
132 Some tests may need Internet connection.
133 </para>
134
135 <para>
136 Now, as the <systemitem class="username">root</systemitem> user:
137 </para>
138
139<screen role="root"><userinput>make install</userinput></screen>
140
141 </sect2>
142
143 <sect2 role="commands">
144 <title>Command Explanations</title>
145
146 <para>
147 <command> CXX="/usr/bin/g++" ./configure ...</command>: Avoid an annoying
148 message during configuration.
149 </para>
150
151 <para>
152 <parameter>--with-system-expat</parameter>: This switch enables linking
153 against the system version of <application>Expat</application>.
154 </para>
155
156 <para>
157 <parameter>--with-system-ffi</parameter>: This switch enables linking
158 against the system version of <application>libffi</application>.
159 </para>
160
161 <para>
162 <parameter>--with-ensurepip=yes</parameter> : This switch enables building
163 the <command>pip</command> and <command>setuptools</command> packaging
164 programs. <command>setuptools</command> is needed for building some
165 Python modules.
166 </para>
167
168 <para>
169 <option>--with-dbmliborder=bdb:gdbm:ndbm</option>: Use this switch
170 if you want to build the <application>Python</application> DBM Module
171 against <application>Berkeley DB</application> instead of
172 <application>GDBM</application>.
173 </para>
174
175 <para>
176 <option>--enable-optimization</option>: Use this switch
177 if you want to enable <emphasis>expensive</emphasis> optimizations (i.e.
178 Profile Guided Optimizations). This adds around 20 SBU, but can
179 <emphasis>slightly</emphasis> speed up some uses, such as using
180 <application>Sphinx</application> for creating documentation, or use of
181 <application>Python3</application> scripts.
182 </para>
183
184 <para>
185 <option>--with-lto</option>: This optional switch enables thick Link
186 Time Optimization. Unusually, it creates a much larger <filename
187 class="libraryfile">/usr/lib/python&python3-majorver;/config-&python3-majorver;-&lt;arch&gt;-linux-gnu/libpython&python3-majorver;.a</filename>
188 with a small increase in the time to compile
189 <application>Python</application>. Run-time results do not appear to show
190 any benefit from doing this.
191 </para>
192 <!--
193 <para>
194 <command>ln -sfv ...</command>: When upgrading to Python-3.8, it was
195 discovered that the symlink to pip3 is sometimes not created. Create
196 the symlink so that pip3 can be used as described in the book.
197 </para>
198 -->
199
200 </sect2>
201
202 <sect2 role="configuration">
203 <title>Configuring Python 3</title>
204
205 <para>
206 In order for <command>python3</command> to find the installed
207 documentation, create the following version independent symlink:
208 </para>
209
210<screen role="root"><userinput>ln -svfn python-&python3-version; /usr/share/doc/python-3</userinput></screen>
211
212 <para>
213 and add the following environment variable to the individual user's or
214 system's profile:
215 </para>
216
217<screen role="root"><userinput>export PYTHONDOCS=/usr/share/doc/python-3/html</userinput></screen>
218
219 </sect2>
220
221 <sect2 role="content">
222 <title>Contents</title>
223
224 <segmentedlist>
225 <segtitle>Installed Programs</segtitle>
226 <segtitle>Installed Libraries</segtitle>
227 <segtitle>Installed Directories</segtitle>
228
229 <seglistitem>
230 <seg>
231 2to3 (symlink) and
232 2to3-&python3-majorver;,
233
234 <!--
235 easy_install-&python3-majorver;,
236 -->
237
238 idle3 (symlink) and
239 idle&python3-majorver;,
240
241 pip3 (symlink) and
242 pip&python3-majorver;,
243
244 pydoc3 and
245 pydoc&python3-majorver;,
246
247 python3 (symlink);
248 python&python3-majorver;, and
249
250 python3-config (symlink) and
251 python&python3-majorver;-config
252 </seg>
253 <seg>
254 libpython&python3-majorver;.so and libpython3.so
255 </seg>
256 <seg>
257 /usr/include/python&python3-majorver;,
258 /usr/lib/python&python3-majorver;, and
259 /usr/share/doc/python-&python3-version;
260 </seg>
261 </seglistitem>
262 </segmentedlist>
263
264 <variablelist>
265 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
266 <?dbfo list-presentation="list"?>
267 <?dbhtml list-presentation="table"?>
268 <!--
269 <varlistentry id="2to3">
270 <term><command>2to3</command></term>
271 <listitem>
272 <para>
273 is designed to assist in the transition between python2 and python3
274 by automatically converting code to be Python3 compatible.
275 </para>
276 <indexterm zone="python3 2to3">
277 <primary sortas="b-2to3">2to3</primary>
278 </indexterm>
279 </listitem>
280 </varlistentry>
281 Put here for easy use when removing Python2 -->
282 <!--
283 <varlistentry id="easy_install">
284 <term><command>easy_install</command></term>
285 <listitem>
286 <para>
287 is a frontend to pip3 to make it easier to configure python modules
288 through the PIP package manager
289 </para>
290 <indexterm zone="python3 easy_install">
291 <primary sortas="python3 easy_install">easy_install</primary>
292 </indexterm>
293 </listitem>
294 </varlistentry>
295 -->
296 <varlistentry id="idle3">
297 <term><command>idle3</command></term>
298 <listitem>
299 <para>
300 is a wrapper script that opens a <application>Python</application>
301 aware GUI editor. For this script to run, you must have installed
302 <application>Tk</application> before Python so that the Tkinter
303 Python module is built
304 </para>
305 <indexterm zone="python3 idle3">
306 <primary sortas="b-idle3">idle3</primary>
307 </indexterm>
308 </listitem>
309 </varlistentry>
310
311 <varlistentry id="pydoc3">
312 <term><command>pydoc3</command></term>
313 <listitem>
314 <para>
315 is the <application>Python</application> documentation
316 tool
317 </para>
318 <indexterm zone="python3 pydoc3">
319 <primary sortas="b-pydoc3">pydo3c</primary>
320 </indexterm>
321 </listitem>
322 </varlistentry>
323
324 <varlistentry id="python3-prog">
325 <term><command>python3</command></term>
326 <listitem>
327 <para>
328 is an interpreted, interactive, object-oriented programming
329 language
330 </para>
331 <indexterm zone="python3 python3-prog">
332 <primary sortas="b-python3">python3</primary>
333 </indexterm>
334 </listitem>
335 </varlistentry>
336
337 <varlistentry id="python-ver">
338 <term><command>python&python3-majorver;</command></term>
339 <listitem>
340 <para>
341 is a version-specific name for the <command>python</command>
342 program
343 </para>
344 <indexterm zone="python3 python-ver">
345 <primary sortas="b-python&python3-majorver;">python&python3-majorver;</primary>
346 </indexterm>
347 </listitem>
348 </varlistentry>
349 <!--
350 <varlistentry id="pyvenv">
351 <term><command>pyvenv</command></term>
352 <listitem>
353 <para>
354 creates virtual <application>Python</application> environments in
355 one or more target directories.
356 </para>
357 <indexterm zone="python3 pyvenv">
358 <primary
359 sortas="b-python&python3-majorver;">python&python3-majorver;</primary>
360 </indexterm>
361 </listitem>
362 </varlistentry>
363 -->
364 </variablelist>
365
366 </sect2>
367
368</sect1>
Note: See TracBrowser for help on using the repository browser.