Macos Big Sur Python3 Cannot Import Numpy Due To Polyfit Error
update from Jan 2021: I performed a clean install of Big Sur in Jan 2021, and upgrade pip to latest version using python3 -m pip install --upgrade pip --user, and installed numpy w
Solution 1:
The numpy installed by default in my question (and which caused the crash) was 1.19. I was able to use numpy with the following workaround:
python3 -m pip uninstall numpy
python3 -m pip install numpy==1.18.0 --user
Post a Comment for "Macos Big Sur Python3 Cannot Import Numpy Due To Polyfit Error"