Hy, I'm working on Jupyter and using python's multiprocessing library; for some reason jupyter is not executing the function i give him, no matter what the function does: If, for example, I make this block of code run:
import multiprocessing as mp
def f():
print("yes")
p = mp.Process(target=f)
p.start()
p.join()
It doesn't seem to execute. The funny aspect is that if I run the same block on colaboratory or a normal python file it executes it perfectly. Is there anything I'm missing?
Thanks in advance