python.xml 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249
  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/libpython&python-minor;m.so
  71. chmod -v 755 /usr/lib/libpython3.so
  72. ln -sfv pip3.7 /usr/bin/pip3</userinput></screen>
  73. <variablelist>
  74. <title>The meaning of the install commands:</title>
  75. <!-- ====== Change 7m if Python minor version changes ======= -->
  76. <varlistentry>
  77. <term><command>chmod -v 755 /usr/lib/libpython3.{7m.,}so</command></term>
  78. <listitem>
  79. <para>Fix permissions for libraries to be consistent with other
  80. libraries.</para>
  81. </listitem>
  82. </varlistentry>
  83. </variablelist>
  84. <para>If desired, install the preformatted documentation:</para>
  85. <screen><userinput remap="install">install -v -dm755 /usr/share/doc/python-&python-version;/html
  86. tar --strip-components=1 \
  87. --no-same-owner \
  88. --no-same-permissions \
  89. -C /usr/share/doc/python-&python-version;/html \
  90. -xvf ../python-&python-version;-docs-html.tar.bz2</userinput></screen>
  91. <variablelist>
  92. <title>The meaning of the documentation install commands:</title>
  93. <varlistentry>
  94. <term><option>--no-same-owner</option> and --no-same-permissions</term>
  95. <listitem>
  96. <para>Ensure the installed files have the correct ownership and
  97. permissions. Without these options, using <application>tar</application>
  98. will install the package files with the upstream creator's values.
  99. </para>
  100. </listitem>
  101. </varlistentry>
  102. </variablelist>
  103. </sect2>
  104. <sect2 id="contents-python" role="content">
  105. <title>Contents of Python 3</title>
  106. <segmentedlist>
  107. <segtitle>Installed Programs</segtitle>
  108. <segtitle>Installed Library</segtitle>
  109. <segtitle>Installed Directories</segtitle>
  110. <seglistitem>
  111. <seg>
  112. 2to3, idle3, pip3, pydoc3, python3, python3-config, and pyvenv
  113. </seg>
  114. <seg>
  115. libpython&python-minor;m.so and libpython3.so
  116. </seg>
  117. <seg>
  118. /usr/include/python&python-minor;m, /usr/lib/python3 and
  119. /usr/share/doc/python-&python-version;
  120. </seg>
  121. </seglistitem>
  122. </segmentedlist>
  123. <variablelist>
  124. <bridgehead renderas="sect3">Short Descriptions</bridgehead>
  125. <?dbfo list-presentation="list"?>
  126. <?dbhtml list-presentation="table"?>
  127. <varlistentry id="python-2to3">
  128. <term><command>2to3</command></term>
  129. <listitem>
  130. <para>
  131. is a <application>Python</application> program that reads
  132. <application>Python 2.x</application> source code and applies a
  133. series of fixes to transform it into valid
  134. <application>Python 3.x</application> code.
  135. </para>
  136. <indexterm zone="ch-system-Python">
  137. <primary sortas="b-2to3">2to3</primary>
  138. </indexterm>
  139. </listitem>
  140. </varlistentry>
  141. <varlistentry id="idle3">
  142. <term><command>idle3</command></term>
  143. <listitem>
  144. <para>
  145. is a wrapper script that opens a <application>Python</application>
  146. aware GUI editor. For this script to run, you must have installed
  147. <application>Tk</application> before Python so that the Tkinter
  148. Python module is built.
  149. </para>
  150. <indexterm zone="ch-system-Python">
  151. <primary sortas="b-idle3">idle3</primary>
  152. </indexterm>
  153. </listitem>
  154. </varlistentry>
  155. <varlistentry id="pip3">
  156. <term><command>pip3</command></term>
  157. <listitem>
  158. <para>
  159. The package installer for Python. You can use pip to install
  160. packages from Python Package Index and other indexes.
  161. </para>
  162. <indexterm zone="ch-system-Python">
  163. <primary sortas="b-pip3">pip3</primary>
  164. </indexterm>
  165. </listitem>
  166. </varlistentry>
  167. <varlistentry id="pydoc3">
  168. <term><command>pydoc3</command></term>
  169. <listitem>
  170. <para>
  171. is the <application>Python</application> documentation tool.
  172. </para>
  173. <indexterm zone="ch-system-Python">
  174. <primary sortas="b-pydoc3">pydoc3</primary>
  175. </indexterm>
  176. </listitem>
  177. </varlistentry>
  178. <varlistentry id="python3">
  179. <term><command>python3</command></term>
  180. <listitem>
  181. <para>
  182. is an interpreted, interactive, object-oriented programming
  183. language.
  184. </para>
  185. <indexterm zone="ch-system-Python">
  186. <primary sortas="b-python3">python3</primary>
  187. </indexterm>
  188. </listitem>
  189. </varlistentry>
  190. <varlistentry id="pyvenv">
  191. <term><command>pyvenv</command></term>
  192. <listitem>
  193. <para>
  194. creates virtual <application>Python</application> environments in
  195. one or more target directories.
  196. </para>
  197. <indexterm zone="ch-system-Python">
  198. <primary sortas="b-pyvenv">pyvenv</primary>
  199. </indexterm>
  200. </listitem>
  201. </varlistentry>
  202. </variablelist>
  203. </sect2>
  204. </sect1>