Re: [Cryptography-dev] Python cryptography fails to load due to _rust DDL import error

2023-08-04 Thread Gualtiero Scotti
I m installing it from pip.and so using static wheel. Thank you Il Ven 4 Ago 2023, 18:28 Alex Gaynor ha scritto: > Not particularly. > > Based on the error message you shared, when Python attempted to import > _rust.dll, it encountered the error "The specified module could not be > found." I'm i

Re: [Cryptography-dev] Python cryptography fails to load due to _rust DDL import error

2023-08-04 Thread Alex Gaynor
Not particularly. Based on the error message you shared, when Python attempted to import _rust.dll, it encountered the error "The specified module could not be found." I'm inferring that this means that something about the module could not be loaded. Perhaps _rust.dll is linked dynamically against

Re: [Cryptography-dev] Python cryptography fails to load due to _rust DDL import error

2023-08-04 Thread Gualtiero Scotti
Thank you Alex for your response. Could you provide me more details? Thanks in advance Il Ven 4 Ago 2023, 18:02 Alex Gaynor ha scritto: > This very likely indicates that however you've packaged and installed > the application in your environment isn't properly including the > extension module f

Re: [Cryptography-dev] Python cryptography fails to load due to _rust DDL import error

2023-08-04 Thread Alex Gaynor
This very likely indicates that however you've packaged and installed the application in your environment isn't properly including the extension module for cryptography. Alex On Fri, Aug 4, 2023 at 11:20 AM Gualtiero Scotti wrote: > > I'm struggling with this issue from few days... > > I've a Py

[Cryptography-dev] Python cryptography fails to load due to _rust DDL import error

2023-08-04 Thread Gualtiero Scotti
I'm struggling with this issue from few days... I've a Python application that can run in two ways: - Stand alone -> launched directly using the python interpreter - From a windows service -> wrapping application with pywin32 and using the same interpreter When app starts in standalone