source: general/prog/setuptools.xml@ bbd1d798

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 7.10 8.0 8.1 8.2 8.3 8.4 9.0 9.1 basic bdubbs/svn elogind kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts lazarus lxqt nosym perl-modules 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 bbd1d798 was 36de390, checked in by Douglas R. Reno <renodr@…>, 8 years ago

Update to GTK+-3.20.9
Tags (including the rest of the python modules)

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

  • Property mode set to 100644
File size: 4.6 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<!-- I don't like the way this URL is structured. -renodr -->
8 <!ENTITY setuptools-download-http
9 "https://pypi.python.org/packages/9f/32/81c324675725d78e7f6da777483a3453611a427db0145dfb878940469692/setuptools-&setuptools-version;.tar.gz">
10 <!ENTITY setuptools-download-ftp " ">
11 <!ENTITY setuptools-md5sum "a0dbb65889c46214c691f6c516cf959c">
12 <!ENTITY setuptools-size "600 KB">
13 <!ENTITY setuptools-buildsize "7.6 MB">
14 <!ENTITY setuptools-time "less than 0.1 SBU">
15]>
16
17 <!-- Begin Setuptools -->
18 <sect2 id="setuptools" xreflabel="Setuptools-&setuptools-version;" revision="systemd">
19
20 <title>Setuptools-&setuptools-version;</title>
21
22 <indexterm zone="setuptools">
23 <primary sortas="a-Setuptools">Setuptools</primary>
24 </indexterm>
25
26 <sect3 role="package">
27 <title>Introduction to Setuptools Module</title>
28
29 <para>
30 <application>Setuptools</application> is a <application>Python</application>
31 module that makes it easier to download, build, install, upgrade, and
32 uninstall <application>Python</application> packages.
33 </para>
34
35 &lfs7a_checked;
36
37 <bridgehead renderas="sect4">Package Information</bridgehead>
38 <itemizedlist spacing="compact">
39 <listitem>
40 <para>
41 Download (HTTP): <ulink url="&setuptools-download-http;"/>
42 </para>
43 </listitem>
44 <listitem>
45 <para>
46 Download (FTP): <ulink url="&setuptools-download-ftp;"/>
47 </para>
48 </listitem>
49 <listitem>
50 <para>
51 Download MD5 sum: &setuptools-md5sum;
52 </para>
53 </listitem>
54 <listitem>
55 <para>
56 Download size: &setuptools-size;
57 </para>
58 </listitem>
59 <listitem>
60 <para>
61 Estimated disk space required: &setuptools-buildsize;
62 </para>
63 </listitem>
64 <listitem>
65 <para>
66 Estimated build time: &setuptools-time;
67 </para>
68 </listitem>
69 </itemizedlist>
70
71 <bridgehead renderas="sect4">Setuptools Dependencies</bridgehead>
72
73 <bridgehead renderas="sect5">Required</bridgehead>
74 <para role="required">
75 <xref linkend="python2"/> and/or
76 <xref linkend="python3"/>
77 </para>
78
79 <para condition="html" role="usernotes">
80 User Notes: <ulink url="&blfs-wiki;/setuptools"/>
81 </para>
82 </sect3>
83
84 <sect3 role="installation">
85 <title>Installation of Setuptools</title>
86
87 <note>
88 <para>
89 Both <application>Python 2</application> and
90 <application>Python 3</application> modules can
91 be built and installed without any conflicts.
92 </para>
93 </note>
94
95 <para>
96 To install the <application>Python 2</application> module,
97 run the following command as the
98 <systemitem class="username">root</systemitem> user:
99 </para>
100
101<screen role="root"><userinput>python setup.py install --optimize=1</userinput></screen>
102
103 <para>
104 To install the <application>Python 3</application> module,
105 run the following command as the
106 <systemitem class="username">root</systemitem> user:
107 </para>
108
109<screen role="root"><userinput>python3 setup.py install --optimize=1</userinput></screen>
110
111 </sect3>
112
113 <sect3 role="content">
114 <title>Contents</title>
115
116 <segmentedlist>
117 <segtitle>Installed Programs</segtitle>
118 <segtitle>Installed Libraries</segtitle>
119 <segtitle>Installed Directories</segtitle>
120
121 <seglistitem>
122 <seg>
123 easy_install, easy_install-&python2-majorver;, and easy_install-&python3-majorver;
124 </seg>
125 <seg>
126 None
127 </seg>
128 <seg>
129 /usr/lib/python&python2-majorver;/site-packages/_markerlib,
130 /usr/lib/python&python2-majorver;/site-packages/setuptools,
131 /usr/lib/python&python2-majorver;/site-packages/setuptools-&setuptools-version;-py&python2-majorver;.egg-info and/or
132 /usr/lib/python&python3-majorver;/site-packages/_markerlib,
133 /usr/lib/python&python3-majorver;/site-packages/setuptools,
134 /usr/lib/python&python3-majorver;/site-packages/setuptools-&setuptools-version;-py&python3-majorver;.egg-info
135 </seg>
136 </seglistitem>
137 </segmentedlist>
138
139 </sect3>
140
141 </sect2>
142 <!--End Setuptools -->
Note: See TracBrowser for help on using the repository browser.