python.xml 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235
  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. <sect1 id="ch-system-Python" role="wrap">
  8. <?dbhtml filename="Python.html"?>
  9. <sect1info condition="script">
  10. <productname>Python</productname>
  11. <productnumber>&python-version;</productnumber>
  12. <address>&python-url;</address>
  13. </sect1info>
  14. <title>Python-&python-version;</title>
  15. <indexterm zone="ch-system-Python">
  16. <primary sortas="a-python">python</primary>
  17. </indexterm>
  18. <sect2 role="package">
  19. <title/>
  20. <para>The Python 3 package contains the Python development environment. It
  21. is useful for object-oriented programming, writing scripts, prototyping
  22. large programs or developing entire applications.</para>
  23. <segmentedlist>
  24. <segtitle>&buildtime;</segtitle>
  25. <segtitle>&diskspace;</segtitle>
  26. <seglistitem>
  27. <seg>&python-ch6-sbu;</seg>
  28. <seg>&python-ch6-du;</seg>
  29. </seglistitem>
  30. </segmentedlist>
  31. </sect2>
  32. <sect2 role="installation">
  33. <title>Installation of Python 3</title>
  34. <para>Prepare Python for compilation:</para>
  35. <screen><userinput remap="configure">./configure --prefix=/usr \
  36. --enable-shared \
  37. --with-system-expat \
  38. --with-system-ffi \
  39. --with-ensurepip=yes</userinput></screen>
  40. <variablelist>
  41. <title>The meaning of the configure options:</title>
  42. <varlistentry>
  43. <term><parameter>--with-system-expat</parameter></term>
  44. <listitem>
  45. <para>This switch enables linking against system version of
  46. <application>Expat</application>.</para>
  47. </listitem>
  48. </varlistentry>
  49. <varlistentry>
  50. <term><parameter>--with-system-ffi</parameter></term>
  51. <listitem>
  52. <para>This switch enables linking against system version of
  53. <application>libffi</application>.</para>
  54. </listitem>
  55. </varlistentry>
  56. <varlistentry>
  57. <term><parameter>--with-ensurepip=yes</parameter></term>
  58. <listitem>
  59. <para>This switch enables building <command>pip</command> and
  60. <command>setuptools</command> packaging programs.</para>
  61. </listitem>
  62. </varlistentry>
  63. </variablelist>
  64. <para>Compile the package:</para>
  65. <screen><userinput remap="make">make</userinput></screen>
  66. <para>The test suite requires TK and and X Windows session and cannot
  67. be run until Python 3 is reinstalled in BLFS.</para>
  68. <para>Install the package:</para>
  69. <screen><userinput remap="install">make install
  70. chmod -v 755 /usr/lib/libpython3.6m.so
  71. chmod -v 755 /usr/lib/libpython3.so</userinput></screen>
  72. <variablelist>
  73. <title>The meaning of the install commands:</title>
  74. <varlistentry>
  75. <term><command>chmod -v 755 /usr/lib/libpython3.{6m.,}so</command></term>
  76. <listitem>
  77. <para>Fix permissions for libraries to be consistent with other
  78. libraries.</para>
  79. </listitem>
  80. </varlistentry>
  81. </variablelist>
  82. <para>If desired, install the preformatted documentation:</para>
  83. <screen><userinput remap="install">install -v -dm755 /usr/share/doc/python-&python-version;/html
  84. tar --strip-components=1 \
  85. --no-same-owner \
  86. --no-same-permissions \
  87. -C /usr/share/doc/python-&python-version;/html \
  88. -xvf ../python-&python-version;-docs-html.tar.bz2</userinput></screen>
  89. <variablelist>
  90. <title>The meaning of the documentation install commands:</title>
  91. <varlistentry>
  92. <term><option>--no-same-owner</option> and --no-same-permissions</term>
  93. <listitem>
  94. <para>Ensure the installed files have the correct ownership and
  95. permissions. Without these options, using <application>tar</application>
  96. will install the package files with the upstream creator's values.
  97. </para>
  98. </listitem>
  99. </varlistentry>
  100. </variablelist>
  101. </sect2>
  102. <sect2 id="contents-python" role="content">
  103. <title>Contents of Python 3</title>
  104. <segmentedlist>
  105. <segtitle>Installed Programs</segtitle>
  106. <segtitle>Installed Library</segtitle>
  107. <segtitle>Installed Directories</segtitle>
  108. <seglistitem>
  109. <seg>
  110. 2to3, idle3, pydoc3, python3, python3-config, pyvenv
  111. </seg>
  112. <seg>
  113. libpython3.6m.so and libpython3.so
  114. </seg>
  115. <seg>
  116. /usr/include/python3.6m, /usr/lib/python3 and
  117. /usr/share/doc/python-&python-version;
  118. </seg>
  119. </seglistitem>
  120. </segmentedlist>
  121. <variablelist>
  122. <bridgehead renderas="sect3">Short Descriptions</bridgehead>
  123. <?dbfo list-presentation="list"?>
  124. <?dbhtml list-presentation="table"?>
  125. <varlistentry id="python-2to3">
  126. <term><command>2to3</command></term>
  127. <listitem>
  128. <para>
  129. is a <application>Python</application> program that reads
  130. <application>Python 2.x</application> source code and applies a
  131. series of fixes to transform it into valid
  132. <application>Python 3.x</application> code.
  133. </para>
  134. <indexterm zone="ch-system-Python">
  135. <primary sortas="b-2to3">2to3</primary>
  136. </indexterm>
  137. </listitem>
  138. </varlistentry>
  139. <varlistentry id="idle3">
  140. <term><command>idle3</command></term>
  141. <listitem>
  142. <para>
  143. is a wrapper script that opens a <application>Python</application>
  144. aware GUI editor. For this script to run, you must have installed
  145. <application>Tk</application> before Python so that the Tkinter
  146. Python module is built.
  147. </para>
  148. <indexterm zone="ch-system-Python">
  149. <primary sortas="b-idle3">idle3</primary>
  150. </indexterm>
  151. </listitem>
  152. </varlistentry>
  153. <varlistentry id="pydoc3">
  154. <term><command>pydoc3</command></term>
  155. <listitem>
  156. <para>
  157. is the <application>Python</application> documentation tool.
  158. </para>
  159. <indexterm zone="ch-system-Python">
  160. <primary sortas="b-pydoc3">pydoc3</primary>
  161. </indexterm>
  162. </listitem>
  163. </varlistentry>
  164. <varlistentry id="python3">
  165. <term><command>python3</command></term>
  166. <listitem>
  167. <para>
  168. is an interpreted, interactive, object-oriented programming
  169. language.
  170. </para>
  171. <indexterm zone="ch-system-Python">
  172. <primary sortas="b-python3">python3</primary>
  173. </indexterm>
  174. </listitem>
  175. </varlistentry>
  176. <varlistentry id="pyvenv">
  177. <term><command>pyvenv</command></term>
  178. <listitem>
  179. <para>
  180. creates virtual <application>Python</application> environments in
  181. one or more target directories.
  182. </para>
  183. <indexterm zone="ch-system-Python">
  184. <primary sortas="b-pyvenv">pyvenv</primary>
  185. </indexterm>
  186. </listitem>
  187. </varlistentry>
  188. </variablelist>
  189. </sect2>
  190. </sect1>