I need to use matplotlib for plotting some parametric curves for college. I tried installing it on my windows machine but the following error shows up everytime I execute
python -m pip install -U matplotlib
I need to use matplotlib for plotting some parametric curves for college. I tried installing it on my windows machine but the following error shows up everytime I execute
python -m pip install -U matplotlib
For the windows machine, I could not find any precompiled wheel for your python version 3.10. But found unofficial wheels here, https://www.lfd.uci.edu/~gohlke/pythonlibs/#numpy
Depending on your architecture version, you can download either one.
numpy‑1.21.2+mkl‑cp310‑cp310‑win_amd64.whl or
numpy‑1.21.2+mkl‑cp310‑cp310‑win32.whl
Then download the suitable one and go to the download directory and run
pip install numpy‑1.21.2+mkl‑cp310‑cp310‑win_amd64.whl
if you have x64 architecture or run
pip install numpy‑1.21.2+mkl‑cp310‑cp310‑win32.whl
If you have x86 architecture. This process worked for me. Give it a try.