webscreenshot
webscreenshot copied to clipboard
This platform lacks of sem_open
Using Termux on Android.
Solution:
try:
from multiprocessing import Process, Queue
except ImportError:
from threading import Thread as Process
from queue import Queue
https://github.com/asciinema/asciinema/issues/271#issuecomment-372113307
Hello,
What do you mean ? I should not use multiprocessing.Pool ?
I think so, maybe this can be solution: https://stackoverflow.com/a/3386632
Can be implemented same way, I think, using try/except and
from multiprocessing.pool import ThreadPool as Pool