-1

I have tried a bunch of different ways to try and get pip to install Numpy and Pandas, originally I was having issues with Jupyter Notebooks but I have gotten that fixed now.

I have tried to use different version on pip to install Numpy and Pandas but nothing seems to work. I keep getting the same error message, see below. enter image description here

Any help would be greatly appreciated.

  • 1
    Looks like `Python 3.9. No luck with `numpy`, yet. Downgrade to 3.8 – Fourier Dec 21 '20 at 23:20
  • As an alternative to downgrading: You can download an unofficial Python 3.9 wheel for `numpy` from Christoph Gohlke's site https://www.lfd.uci.edu/~gohlke/pythonlibs/ – BoarGules Dec 21 '20 at 23:35

1 Answers1

1

Python 3.9 is pretty new, downgrade it to 3.8 as commented by Fourier. Issues with wheels can be fixed with:

pip install wheel
Paaksing
  • 432
  • 1
  • 4
  • 17