Python packages installation - pandas & nympy
15:57 30 Dec 2025

I have read close to all posts about this topic now but I can get it working, so sorry if you find this similar to other questions, but I can't just solve it based on existing posts. I find it very hard to install Python with its packages, and remember struggling on my PC a couple of years ago also.

I have a macbook. I have installed python. Using PyCharm. I have tried to install a couple of packages, not sure they got installed in the right or wrong folder. So far I have tried (and in some cases been successful) installing requests, torch, wheel, pandas, numpy. All by using pip. I have tried uninstall and install again. Also tried upgrading.

Line 8 in the response below is "import pandas as pd"

The code in PyCharm gives the following response during execution: File "/Users/name/PycharmProjects/ABCProject/file.py", line 8, in import pandas as pd File "/Library/Frameworks/Python.framework/Versions/3.14/lib/python3.14/site-packages/pandas/init.py", line 19, in raise ImportError( "Unable to import required dependencies:\n" + "\n".join(_missing_dependencies) ) ImportError: Unable to import required dependencies: numpy:

IMPORTANT: PLEASE READ THIS FOR ADVICE ON HOW TO SOLVE THIS ISSUE!

Importing the numpy C-extensions failed. This error can happen for many reasons, often due to issues with your setup or how NumPy was installed. The following compiled module files exist, but seem incompatible with with either python 'cpython-314' or the platform 'darwin':

  • _multiarray_umath.cpython-313-darwin.so

We have compiled some common reasons and troubleshooting tips at:

https://numpy.org/devdocs/user/troubleshooting-importerror.html

Please note and check the following:

  • The Python version is: Python 3.14 from "/usr/local/bin/python3.14"
  • The NumPy version is: "2.4.0"

and make sure that they are the versions you expect.

Please carefully study the information and documentation linked above. This is unlikely to be a NumPy issue but will be caused by a bad install or environment on your machine.

Original error was: No module named 'numpy._core._multiarray_umath'

Process finished with exit code 1

python pandas macos numpy pycharm