I\'m running parallel processing in Python on Windows. Here\'s my code:
from joblib import Parallel, delayed
def f(x):
return sqrt(x)
if __name__ == \'__m
Joblib is working on my Windows 10 when I am using the version 1.19.5 of numpy
. I upgraded all outdated package; to do that you can run the following command:
pip list --outdated
pip install --upgrade
or you use pip_upgrade_outdated
which upgrades all outdated packages by doing pip install pip-upgrade-outdated
and pip-upgrade-outdated
according this this site