Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #197231
| From | Keith Thompson <Keith.S.Thompson+u@gmail.com> |
|---|---|
| Newsgroups | comp.lang.python |
| Subject | Re: Version of OpenSSl ? |
| Date | 2025-02-09 02:35 -0800 |
| Organization | None to speak of |
| Message-ID | <87zfivz9qk.fsf@nosuchdomain.example.com> (permalink) |
| References | <20250209092819.BLUK2E0092BKbYl01LUKR6@andre.telenet-ops.be> <mailman.100.1739090040.2912.python-list@python.org> |
vincent.vandevyvre@oqapy.eu writes:
> Hi,
>
> Trying to compile Python-3.12.9 on Ubuntu-24.04
>
> The compilation is complete without errors but I have this message:
> --------------------------------------------------------------------------------------------------------
> The necessary bits to build these optional modules were not found:
> _hashlib _ssl nis
> To find the necessary bits, look in configure.ac and config.log.
>
> Could not build the ssl module!
> Python requires a OpenSSL 1.1.1 or newer
> --------------------------------------------------------------------------------------------------------
>
> But I have a more newer version:
>
> -------------------------------------------------------------------------------------------------------
> $ openssl version
> OpenSSL 3.0.13 30 Jan 2024 (Library: OpenSSL 3.0.13 30 Jan 2024)
> -------------------------------------------------------------------------------------------------------
You have the openssl command, but do you have the openssl development
libraries?
For Ubuntu, you need to install the libssl-dev package.
`dpkg -l libssl-dev` will tell you whether you have it.
If you don't, `sudo apt-get install libssl-dev` will install it.
--
Keith Thompson (The_Other_Keith) Keith.S.Thompson+u@gmail.com
void Void(void) { Void(); } /* The recursive call of the void */
Back to comp.lang.python | Previous | Next — Previous in thread | Find similar
Version of OpenSSl ? vincent.vandevyvre@oqapy.eu - 2025-02-09 03:33 -0500 Re: Version of OpenSSl ? Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2025-02-09 02:35 -0800
csiph-web