Unable to Install Matplotlib & Pandas for Python 3.10

MRAB python at mrabarnett.plus.com
Sun Oct 24 11:46:53 EDT 2021


On 2021-10-24 12:41, Anik Dey wrote:
> Hello, I downloaded & installed Python 3.10 but it didn't replace Python
> 3.9. And now I can't install Matplotlib & Pandas. What should I do?
> 
Multiple versions of Python can exist alongside each other.

You haven't said what you mean by "can't install".

If you're on Windows, you can install libraries by using the Windows 
Command Prompt and typing:

py -3.10 -m pip install matplotlib
py -3.10 -m pip install pandas


"py" is the Python launcher and "py -3.10" will make it run Python 3.10 
specifically.


More information about the Python-list mailing list