Issues with installing Python

I’ve tried downloading Python to my computer but am unable to run the command “import pandas as pd”. I’ve tried reinstalling, getting the most up to date package and tried rerouting where my scripts go, but no luck. Would appreciate any help with this. Thank you

Hi Nkinsman16 and welcome to the community.

Your error description is very short so let my guess a lot…

  • You have installed python successfully?
  • You can run the python interpreter?
  • You have not installed any additional package?
  • You try to “import pandas” and get a module not fund error?

If this is the case: You could try “python -m pip install pandas”.
This should install the pandas library to your python installation.
Afterwards the command “import pandas as pd” might work.