I'm new to multiprocessing but I'm having trouble even starting the processes. Even the below code snippet from python's documentation does not print anything
from multiprocessing import Process
def f(name):
print('hello', name)
if __name__ == '__main__':
p = Process(target=f, args=('bob',))
p.start()
p.join()
I went through this similar question and their solution does not work for me.
I'm running python 3.8.2 on Jupyter Notebook