When trying to install Python's ipcqueue
on Windows 10, I'm getting the following error:
.../ipcqueue/posixmq.h(5): fatal error C1083: Cannot open include file: 'mqueue.h': No such file or directory
That's expected, since ipcqueue
requires Python header files (link), and I don't know how to get those files on Windows or if it's even possible to do so. I've spent some time researching online, but since I'm no expert when it comes to these things, I've come here to ask for your help. The closest thing I've found is the mqueue-w32 GitHub repo, but it's for Windows 32 only.
Hopefully there's a simple way to solve my problem. Any help is greatly appreciated.