source: general/prog/python2.xml@ 4af4be4

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 7.10 7.4 7.5 7.6 7.6-blfs 7.6-systemd 7.7 7.8 7.9 8.0 8.1 8.2 8.3 8.4 9.0 9.1 basic bdubbs/svn elogind gnome kde5-13430 kde5-14269 kde5-14686 kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts krejzi/svn lazarus lxqt nosym perl-modules plabs/newcss plabs/python-mods python3.11 qt5new rahul/power-profiles-daemon renodr/vulkan-addition systemd-11177 systemd-13485 trunk upgradedb xry111/intltool xry111/llvm18 xry111/soup3 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since 4af4be4 was 4af4be4, checked in by Krejzi <krejzi@…>, 11 years ago

Some more package updates.

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

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