vincent.vandevy...@oqapy.eu writes:
>> In case this helps you find the correct package to install:
>>
>> $ python3 -c "if True:
>> > import ssl
>> > print('Ok.')
>> > "
>> Ok.
>>
>> $ cat /etc/lsb-release
>> DISTRIB_ID=Ubuntu
>> DISTRIB_RELEASE=24.04
>> DISTRIB_CODENAME=noble
>> DISTRIB_D
vincent.vandevy...@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 bu
So, this is how I know where my SSL headers are found, for instance:
➜ cpython git:(3.12) gcc -I. -I./Include -H ./Modules/_ssl.c 2>&1 | grep evp.h
.. /usr/include/openssl/evp.h
(this was executed from the repository root).
Can you see if you get something similar?
Also... just for sanity chec
>
> In case this helps you find the correct package to install:
>
> $ python3 -c "if True:
> > import ssl
> > print('Ok.')
> > "
> Ok.
>
> $ cat /etc/lsb-release
> DISTRIB_ID=Ubuntu
> DISTRIB_RELEASE=24.04
> DISTRIB_CODENAME=noble
> DISTRIB_DESCRIPTION="Ubuntu 24.04.1 LTS"
>
> $ apt lis
>
> 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 foun
> HI Vincent.
>
> You need the sources of the OpenSSL library, not the compiled library.
> On Ubuntu, the packages with sources are typically named xxx-dev where
> xxx is the package that provides the library. I don't have a Ubuntu
> currently, but try looking for something like openssl-dev or
> l
HI Vincent.
You need the sources of the OpenSSL library, not the compiled library.
On Ubuntu, the packages with sources are typically named xxx-dev where
xxx is the package that provides the library. I don't have a Ubuntu
currently, but try looking for something like openssl-dev or
libopenssl-dev
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:
_hash