OSError: ctypes.util.find_library() did not manage to locate a library called 'CoreAudio'
See original GitHub issueGetting this error:
`
OSError: ctypes.util.find_library() did not manage to locate a library called 'CoreAudio'
When trying to import soundcard into my project. OS: macOS
Any idea on how I can solve that?
Issue Analytics
- State:
- Created 3 years ago
- Comments:10 (4 by maintainers)
Top Results From Across the Web
In docker : OSError: ctypes.util.find_library() did not manage to ...
txt file. When i run docker container i got the below message. OSError: ctypes.util.find_library() did not manage to locate a library called ' ......
Read more >Issue 44689: ctypes.util.find_library() does not find macOS 11 ...
Code that attempts to check for dynamic library presence by looking for a file at a path or enumerating a directory will fail....
Read more >Python Examples of ctypes.util.find_library - ProgramCreek.com
The following are 30 code examples of ctypes.util.find_library(). You can vote up the ... except OSError as ex: print name, "import(%d): Library not...
Read more >Don't use ctypes.util.find_library in ipaclient - freeipa - Pagure.io
ipaclient.csrgen_ffi uses ctypes.util.find_library('crypto') to locate OpenSSL's libcrypto.so . The function is costly and should be avoided in interactive ...
Read more >OSError: ctypes.util.find_library() did not manage to locate a ...
OSError : ctypes.util.find_library() did not manage to locate a library called 'sndfile'. arrow_drop_up 1. I am getting this error when i tried to...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
I have solved it temporarily by following these steps
I have temporarily avoided the error by adding this code in …/lib/python3.8/site-packages/cffi/api.py
like so:
Hope it helps
That’s very good to hear!
Since I don’t have access to a modern Mac, one of you will have to step in with a solution to the silence issue. I have no way of debugging this, unfortunately.