Ask Your Question
0

What does the undefined symbol:_ZNSt12out_of_rangeC1EPKc,versionQt_5 error message mean in association with PyQt5 imports?

asked 2022-03-22 11:00:00 +0000

ladyg gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
3

answered 2022-04-28 02:00:00 +0000

bukephalos gravatar image

This error message typically occurs when PyQt5 is compiled with a different version of C++ runtime library than the one used to build the application or library that is trying to import it. Specifically, it suggests that the outofrange constructor from the STL library is missing at runtime.

To fix this error, try rebuilding PyQt5 with the same version of the C++ runtime library that is used by the application. Alternatively, you can try linking the application statically to ensure that all required symbols are resolved at compile time.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2022-03-22 11:00:00 +0000

Seen: 9 times

Last updated: Apr 28 '22