Deutsch   English   Français   Italiano  
<v1mdeb$1ktoa$3@dont-email.me>

View for Bookmarking (what is this?)
Look up another Usenet article

Path: ...!weretis.net!feeder8.news.weretis.net!eternal-september.org!feeder3.eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail
From: Lawrence D'Oliveiro <ldo@nz.invalid>
Newsgroups: comp.os.linux.advocacy
Subject: Re: Find "py.exe" & copy it to "Python" (flat, no extension).
Date: Sat, 11 May 2024 00:17:16 -0000 (UTC)
Organization: A noiseless patient Spider
Lines: 15
Message-ID: <v1mdeb$1ktoa$3@dont-email.me>
References: <Jeff-Relf.Me@May.7--6.25pm.Seattle.2024>
	<69ll3jhi08tml3m5cmhb3c6or82dd7vevb@4ax.com> <v1elbc$3mm19$3@dont-email.me>
	<la0ho8F8jdU1@mid.individual.net> <v1f3kt$3pqos$1@dont-email.me>
	<la1jmnF50usU3@mid.individual.net> <v1gokm$5t3j$5@dont-email.me>
	<la2fp1F94quU2@mid.individual.net> <v1h3o6$827d$6@dont-email.me>
	<la32d5Fbn7iU5@mid.individual.net> <v1hncr$fups$2@dont-email.me>
	<663e66da$0$16413$426a34cc@news.free.fr> <la7b8oFo56U4@mid.individual.net>
	<v1m415$1iq5v$6@dont-email.me> <la7qniF3chuU1@mid.individual.net>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Injection-Date: Sat, 11 May 2024 02:17:16 +0200 (CEST)
Injection-Info: dont-email.me; posting-host="35cd064a09c147145ba6425e37519214";
	logging-data="1734410"; mail-complaints-to="abuse@eternal-september.org";	posting-account="U2FsdGVkX19v+yD6cqH04ny5JjxBcLEb"
User-Agent: Pan/0.155 (Kherson; fc5a80b8)
Cancel-Lock: sha1:9NClAKvZ7+JbqCc/Gi/XJlWRe9U=
Bytes: 2159

On 10 May 2024 23:59:46 GMT, rbowman wrote:

> On Fri, 10 May 2024 21:36:37 -0000 (UTC), Lawrence D'Oliveiro wrote:
> 
>> For Python, the -dev package is only needed if you want to do something
>> like embed Python into a C program, or create an extension module.
> 
> I forget if it was numpy or matplotlib but my Debian Python required
> some additional packages to build the wheel.

Building wheels used to be done with distutils. But as of Python 3.12, 
that has been dropped from the standard library, and you are supposed to 
use setuptools instead. And you will also need twine as well.

If your package includes any C code, then of course that’s extra.