Skip to content Skip to sidebar Skip to footer

How To Solve "preparing Wheel Metadata ... Error" This Error For Macos For Python 3.9

I am trying to use pip3 with python 3.9 to install modules... I read replies for windows which suggest installing VisualStudio as we need a good C++ compiler I use macOS I am addin

Solution 1:

I had the same issue. In my case, the steps below helped though it was time-consuming.

#Preparation pip install cythongit clone https://github.com/numpy/numpy.git

#Steps cd numpypython setup.py buildpython setup.py install

I hope it works for you too.

Post a Comment for "How To Solve "preparing Wheel Metadata ... Error" This Error For Macos For Python 3.9"