3

I am fairly new to using pip and python. I installed other libraries in python but can't install pandas. It gives lots of error after 22 percent installation. See the errors in image

Can anyone help?

3
  • 3
    Don't show screenshots of the error message, you need to copy and paste the full error message in your question Commented Aug 15, 2018 at 13:25
  • pip uninstall pandas uninstall and install pandas @ Mazhar Ali pip install pandas==0.23.4 Commented Aug 15, 2018 at 13:33
  • Please don't post pictures of text. Instead, copy the text itself, edit it into your post, and use the formatting tools like code formatting. That's also not the full error message in the screenshot. Please always post full error messages, verbatim. Commented Jun 17 at 20:06

2 Answers 2

5

Try installing numpy first, maybe pandas installation will work after.

pip install numpy pip install pandas 

If it does not work, try installing specific versions of pandas, like:

pip install pandas==0.23.4 
Sign up to request clarification or add additional context in comments.

Comments

1

Based on the image you have inserted the problem is with your internet speed. If I were you I would download pandas from official website. You can install it using this. Also on this website you will find other packages that needs to be installed in order for pandas to work.

Comments

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.