source: general/prog/python2.xml@ b61e62f

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 8.4 9.0 9.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 b61e62f was b61e62f, checked in by Douglas R. Reno <renodr@…>, 5 years ago

Some more tags. About a couple dozen packages before Xorg

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@21166 af4574ff-66df-0310-9fd7-8a98e5e911e0

  • Property mode set to 100644
File size: 10.8 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 python2-download-http
8 "https://www.python.org/ftp/python/&python2-version;/Python-&python2-version;.tar.xz">
9 <!ENTITY python2-download-ftp " ">
10 <!ENTITY python2-md5sum "a80ae3cc478460b922242f43a1b4094d">
11 <!ENTITY python2-size "12 MB">
12 <!ENTITY python2-buildsize "127 MB (additional 15 MB for tests)">
13 <!ENTITY python2-time "0.9 SBU (additional 6.6 SBU for tests)">
14
15 <!ENTITY python2htmldoc-download-http
16 "https://docs.python.org/ftp/python/doc/&python2-version;/python-&python2-version;-docs-html.tar.bz2">
17]>
18
19<sect1 id="python2" xreflabel="Python-&python2-version;">
20 <?dbhtml filename="python2.html" ?>
21
22 <sect1info>
23 <othername>$LastChangedBy$</othername>
24 <date>$Date$</date>
25 </sect1info>
26
27 <title>Python-&python2-version;</title>
28
29 <indexterm zone="python2">
30 <primary sortas="a-Python2">Python2</primary>
31 </indexterm>
32
33 <sect2 role="package">
34 <title>Introduction to Python 2</title>
35
36 <para>
37 The <application>Python 2</application> package contains the
38 <application>Python</application> development environment. It is useful
39 for object-oriented programming, writing scripts, prototyping large
40 programs or developing entire applications. This version is for backward
41 compatibility with other dependent packages.
42 </para>
43
44 &lfs84_checked;
45
46 <bridgehead renderas="sect3">Package Information</bridgehead>
47 <itemizedlist spacing="compact">
48 <listitem>
49 <para>
50 Download (HTTP): <ulink url="&python2-download-http;"/>
51 </para>
52 </listitem>
53 <listitem>
54 <para>
55 Download (FTP): <ulink url="&python2-download-ftp;"/>
56 </para>
57 </listitem>
58 <listitem>
59 <para>
60 Download MD5 sum: &python2-md5sum;
61 </para>
62 </listitem>
63 <listitem>
64 <para>
65 Download size: &python2-size;
66 </para>
67 </listitem>
68 <listitem>
69 <para>
70 Estimated disk space required: &python2-buildsize;
71 </para>
72 </listitem>
73 <listitem>
74 <para>
75 Estimated build time: &python2-time;
76 </para>
77 </listitem>
78 </itemizedlist>
79
80 <bridgehead renderas="sect3">Additional Downloads</bridgehead>
81
82 <itemizedlist spacing="compact">
83 <title>Optional HTML Documentation</title>
84 <listitem>
85 <para>
86 Download (HTTP): <ulink url="&python2htmldoc-download-http;"/>
87 </para>
88 </listitem>
89 </itemizedlist>
90
91 <bridgehead renderas="sect3">Python 2 Dependencies</bridgehead>
92<!--
93 <bridgehead renderas="sect4">Recommended</bridgehead>
94 <para role="recommended">
95 <xref linkend="libffi"/>
96 </para>
97-->
98 <bridgehead renderas="sect4">Optional</bridgehead>
99 <para role="optional">
100 <xref linkend="bluez"/> and
101 <xref linkend="valgrind"/>
102 </para>
103
104 <bridgehead renderas="sect4">Optional (For Additional Modules)</bridgehead>
105 <para role="optional">
106 <xref linkend="sqlite"/> and
107 <xref linkend="tk"/>
108 </para>
109<!--
110 <note>
111 <para>
112 If you are building <xref linkend="thunderbird"/> or
113 <xref linkend="firefox"/>
114 you must install <application>openssl</application> before you build
115 <application>Python 2</application>.
116 </para>
117 </note>
118-->
119 <para condition="html" role="usernotes">
120 User Notes: <ulink url="&blfs-wiki;/Python"/>
121 </para>
122 </sect2>
123
124 <sect2 role="installation">
125 <title>Installation of Python 2</title>
126
127 <para>
128 Install <application>Python 2</application> by running the following
129 commands:
130 </para>
131
132<screen><userinput>./configure --prefix=/usr \
133 --enable-shared \
134 --with-system-expat \
135 --with-system-ffi \
136 --with-ensurepip=yes \
137 --enable-unicode=ucs4 &amp;&amp;
138make</userinput></screen>
139
140 <para>
141 To test the results, issue: <command>make -k test</command>.
142 Three tests fail for unknown reasons.
143 </para>
144
145 <para>
146 Now, as the <systemitem class="username">root</systemitem> user:
147 </para>
148
149<screen role="root"><userinput>make install &amp;&amp;
150chmod -v 755 /usr/lib/libpython&python2-majorver;.so.1.0</userinput></screen>
151
152 <para>
153 Since <application>Python 2</application> is in maintenance mode, and
154 <application>Python 3</application> is recommended by upstream for
155 development, you probably do not need to install the documentation.
156 However, if you still want to install documentation for both
157 <application>Python</application> versions, be sure to define the
158 <envar>PYTHONDOCS</envar>
159 variable for the version you want to use, each time you need to consult
160 the documentation. If you have downloaded the preformatted documentation
161 from <ulink url="http://docs.python.org/download.html"/>, install it
162 as the <systemitem class="username">root</systemitem> user:
163 </para>
164
165<screen role="root"><userinput>install -v -dm755 /usr/share/doc/python-&python2-version; &amp;&amp;
166
167tar --strip-components=1 \
168 --no-same-owner \
169 --directory /usr/share/doc/python-&python2-version; \
170 -xvf ../python-&python2-version;-docs-html.tar.bz2 &amp;&amp;
171
172find /usr/share/doc/python-&python2-version; -type d -exec chmod 0755 {} \; &amp;&amp;
173find /usr/share/doc/python-&python2-version; -type f -exec chmod 0644 {} \;</userinput></screen>
174 </sect2>
175
176 <sect2 role="commands">
177 <title>Command Explanations</title>
178
179 <para>
180 <parameter>--with-system-expat</parameter>: This switch enables linking
181 against system version of <application>Expat</application>.
182 </para>
183
184 <para>
185 <parameter>--with-system-ffi</parameter>: This switch enables linking
186 against system version of <application>libffi</application>.
187 </para>
188
189 <para>
190 <parameter>--with-ensurepip=yes</parameter> : This switch enables building
191 <command>pip</command> and <command>setuptools</command> packaging programs.
192 <command>setuptools</command> is needed for building some Python modules.
193 </para>
194
195 <para>
196 <parameter>--enable-unicode=ucs4</parameter>: This switch enables
197 32bit Unicode support in <application>Python</application>.
198 </para>
199
200 <para>
201 <option>--with-dbmliborder=bdb:gdbm:ndbm</option>: Use this switch
202 if you want to build <application>Python</application> DBM Module
203 against <application>Berkeley DB</application> instead of
204 <application>GDBM</application>.
205 </para>
206
207 <para>
208 <command>chmod ...</command>: Fix permissions for libraries to be
209 consistent with other libraries.
210 </para>
211
212 </sect2>
213
214 <sect2 role="configuration">
215 <title>Configuring Python 2</title>
216
217 <para>
218 In order for <command>python</command> to find the installed
219 documentation, you must add the following environment variable to
220 individual user's or the system's profile:
221 </para>
222
223<screen role="root"><userinput>export PYTHONDOCS=/usr/share/doc/python-&python2-version;</userinput></screen>
224
225 </sect2>
226
227 <sect2 role="content">
228 <title>Contents</title>
229
230 <segmentedlist>
231 <segtitle>Installed Programs</segtitle>
232 <segtitle>Installed Library</segtitle>
233 <segtitle>Installed Directories</segtitle>
234
235 <seglistitem>
236 <seg>
237 2to3, pydoc, python (symlink), python-config (symlink),
238 python2 (symlink), python2-config (symlink),
239 python&python2-majorver;, python&python2-majorver;-config,
240 smtpd.py, and idle
241 </seg>
242 <seg>
243 libpython&python2-majorver;.so
244 </seg>
245 <seg>
246 /usr/{include,lib}/python&python2-majorver; and
247 /usr/share/doc/python-&python2-version;
248 </seg>
249 </seglistitem>
250 </segmentedlist>
251
252 <variablelist>
253 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
254 <?dbfo list-presentation="list"?>
255 <?dbhtml list-presentation="table"?>
256
257 <varlistentry id="python2-2to3">
258 <term><command>2to3</command></term>
259 <listitem>
260 <para>
261 is a <application>Python</application> program that reads
262 <application>Python 2.x</application> source code and applies a
263 series of fixes to transform it into valid
264 <application>Python 3.x</application> code.
265 </para>
266 <indexterm zone="python2 python2-2to3">
267 <primary sortas="b-2to3">2to3</primary>
268 </indexterm>
269 </listitem>
270 </varlistentry>
271
272 <varlistentry id="idle">
273 <term><command>idle</command></term>
274 <listitem>
275 <para>
276 is a wrapper script that opens a <application>Python</application>
277 aware GUI editor. For this script to run, you must have installed
278 <application>Tk</application> before Python so that the Tkinter
279 Python module is built.
280 </para>
281 <indexterm zone="python2 idle">
282 <primary sortas="b-idle">idle</primary>
283 </indexterm>
284 </listitem>
285 </varlistentry>
286
287 <varlistentry id="pydoc2">
288 <term><command>pydoc</command></term>
289 <listitem>
290 <para>
291 is the <application>Python</application> documentation tool.
292 </para>
293 <indexterm zone="python2 pydoc2">
294 <primary sortas="b-pydoc2">pydoc</primary>
295 </indexterm>
296 </listitem>
297 </varlistentry>
298
299 <varlistentry id="python">
300 <term><command>python</command></term>
301 <listitem>
302 <para>
303 is an interpreted, interactive, object-oriented programming
304 language.
305 </para>
306 <indexterm zone="python2 python">
307 <primary sortas="b-python2">python</primary>
308 </indexterm>
309 </listitem>
310 </varlistentry>
311
312 <varlistentry id="python2-ver">
313 <term><command>python&python2-majorver;</command></term>
314 <listitem>
315 <para>
316 is a version-specific name for the <command>python</command>
317 program.
318 </para>
319 <indexterm zone="python2 python2-ver">
320 <primary sortas="b-python&python2-majorver;">python&python2-majorver;</primary>
321 </indexterm>
322 </listitem>
323 </varlistentry>
324
325 <varlistentry id="smtpd.py">
326 <term><command>smtpd.py</command></term>
327 <listitem>
328 <para>
329 is an SMTP proxy implemented in <application>Python</application>.
330 </para>
331 <indexterm zone="python2 smtpd.py">
332 <primary sortas="b-smtpd.py">smtpd.py</primary>
333 </indexterm>
334 </listitem>
335 </varlistentry>
336
337 </variablelist>
338
339 </sect2>
340
341</sect1>
Note: See TracBrowser for help on using the repository browser.