skip to Main Content

error screenshot

Hi there,
I have installed Python 3.10.8 from Microsoft store and installed Pandas (via pip), but still got this message.
Thanks

3

Answers


  1. This is usually due to not having the correct Python interpreter selected in VsCode.
    Press Cntrl+Shift+P, search for Select Python Interpreter and try to change between the options.
    Hope this helps!

    Login or Signup to reply.
  2. you can have to install http://conda.pydata.org/miniconda.html

    and then you can just do

    conda install pandas

    you have all the instruction in the next web page.
    https://pandas.pydata.org/pandas-docs/dev/getting_started/install.html

    Login or Signup to reply.
  3. The kernel version displayed in the upper right corner of your picture is 3.9.10

    Please click it to switch it to 3.10.8

    enter image description here

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search