source: general/prog/python-modules/numpy.xml@ dce8206

12.1 ken/TL2024 lazarus trunk xry111/llvm18
Last change on this file since dce8206 was e8b3f50, checked in by Douglas R. Reno <renodr@…>, 3 months ago

Tags

  • Property mode set to 100644
File size: 5.5 KB
Line 
1<?xml version="1.0" encoding="UTF-8"?>
2<!DOCTYPE sect2 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 numpy-download-http "https://files.pythonhosted.org/packages/source/n/numpy/numpy-&numpy-version;.tar.gz">
8 <!ENTITY numpy-download-ftp " ">
9 <!ENTITY numpy-md5sum "&numpy-md5sum;">
10 <!ENTITY numpy-size "15 MB">
11 <!ENTITY numpy-buildsize "91 MB (add 333 MB for tests)">
12 <!ENTITY numpy-time "0.4 SBU (add 2.8 SBU for tests)">
13]>
14
15 <sect2 id="numpy" xreflabel="NumPy-&numpy-version;">
16
17 <title>NumPy-&numpy-version;</title>
18
19 <indexterm zone="numpy">
20 <primary sortas="a-numpy">numpy</primary>
21 </indexterm>
22
23 <sect3 role="package">
24 <title>Introduction to NumPy Module</title>
25
26 <para>
27 <application>NumPy</application> is the fundamental package for
28 scientific computing with Python.
29 </para>
30
31 &lfs121_checked;
32
33 <bridgehead renderas="sect4">Package Information</bridgehead>
34 <itemizedlist spacing="compact">
35 <listitem>
36 <para>
37 Download (HTTP): <ulink url="&numpy-download-http;"/>
38 </para>
39 </listitem>
40 <listitem>
41 <para>
42 Download (FTP): <ulink url="&numpy-download-ftp;"/>
43 </para>
44 </listitem>
45 <listitem>
46 <para>
47 Download MD5 sum: &numpy-md5sum;
48 </para>
49 </listitem>
50 <listitem>
51 <para>
52 Download size: &numpy-size;
53 </para>
54 </listitem>
55 <listitem>
56 <para>
57 Estimated disk space required: &numpy-buildsize;
58 </para>
59 </listitem>
60 <listitem>
61 <para>
62 Estimated build time: &numpy-time;
63 </para>
64 </listitem>
65 </itemizedlist>
66
67 <bridgehead renderas="sect4">NumPy Dependencies</bridgehead>
68
69 <bridgehead renderas="sect5">Required</bridgehead>
70 <para role="required">
71 <xref linkend="cython"/>,
72 <xref linkend="meson_python"/>, and
73 <xref linkend="pyproject-metadata"/>
74 </para>
75
76<!-- <bridgehead renderas="sect5">Recommended</bridgehead>
77 <para role="recommended">
78 <xref linkend="setuptools_scm"/>
79 </para>-->
80
81 <bridgehead renderas="sect5">Optional</bridgehead>
82 <para role="optional">
83 fortran from <xref linkend="gcc"/>,
84 <ulink url="https://www.netlib.org/lapack/">lapack and cblas</ulink>, and
85 <ulink url="https://www.openblas.net/">openblas</ulink>
86 </para>
87
88 <bridgehead renderas="sect5">Optional (for testing)</bridgehead>
89 <para role="optional">
90 <xref linkend="attrs"/>,
91 <xref linkend="pytest"/>,
92 <xref linkend="pytz"/>, and
93 <ulink url="https://pypi.org/project/hypothesis/">hypothesis</ulink>
94 </para>
95
96 </sect3>
97
98 <sect3 role="installation">
99 <title>Installation of NumPy</title>
100
101 <para> Build the module: </para>
102
103<screen><userinput>pip3 wheel -w dist --no-build-isolation --no-deps --no-cache-dir -Csetup-args=-Dallow-noblas=true $PWD</userinput></screen>
104
105 <para>
106 Now, as the <systemitem class="username">root</systemitem> user:
107 </para>
108
109<screen role="root"><userinput>&install-wheel; numpy</userinput></screen>
110
111 <para>
112 The installation can be tested with the following commands:
113 </para>
114
115<screen remap="test"><userinput>python3 -m venv --system-site-packages testenv &amp;&amp;
116source testenv/bin/activate &amp;&amp;
117pip3 install hypothesis &amp;&amp;
118python3 runtests.py<!-- no && because of a possible error -->
119deactivate</userinput></screen>
120
121 <para>
122 Three tests, out of over 35000 tests, are known to fail.
123 <!-- test_f2py2e.py::test_untitled_cli,
124 test_f2py2e.py::test_no_py312_distutils_fcompiler
125 test_public_api.py::test_all_modules_are_expected
126 3 failed, 35182 passed, 1835 skipped, 1306 deselected,
127 32 xfailed, 2 xpassed -->
128 </para>
129
130 </sect3>
131
132 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
133 href="../../../xincludes/pip3-cmd-explain.xml"/>
134
135 <sect3 role="content">
136 <title>Contents</title>
137
138 <segmentedlist>
139 <segtitle>Installed Programs</segtitle>
140 <segtitle>Installed Libraries</segtitle>
141 <segtitle>Installed Directories</segtitle>
142
143 <seglistitem>
144 <seg>
145 f2py, f2py3 and f2py&python3-majorver; (3 copies of the same script)
146 </seg>
147 <!-- we seem not to record the solibs, see e.g. lxml, cairo
148 actually, this one has a lot, all with awkward
149 * .cpython-311-x86_64-linux-gnu.so names -->
150 <seg>None</seg>
151 <seg>
152 /usr/lib/python&python3-majorver;/site-packages/numpy
153 </seg>
154 </seglistitem>
155 </segmentedlist>
156
157 <variablelist>
158 <bridgehead renderas="sect5">Short Descriptions</bridgehead>
159 <?dbfo list-presentation="list"?>
160 <?dbhtml list-presentation="table"?>
161
162 <varlistentry id="f2py">
163 <term><command>f2py</command></term>
164 <listitem>
165 <para>
166 is the Fortran to Python interface generator utility.
167 </para>
168 <indexterm zone="numpy f2py">
169 <primary sortas="b-f2py">f2py</primary>
170 </indexterm>
171 </listitem>
172 </varlistentry>
173
174 </variablelist>
175
176 </sect3>
177
178 </sect2>
Note: See TracBrowser for help on using the repository browser.