0

I'm trying to install pandas in my windows 10 64bit computer. I already installed python 3.8.0 from the follwing link.

https://www.python.org/downloads/windows/

Dowloaded python file

I tried to install pandas by pip install pandas command. But I couldn't install pandas due to the following error. Can someone help me to solve this error?

enter image description here

When I tried to install numpy by pip install numpy I'm getting the following error. enter image description here

enter image description here

Anne
  • 401
  • 6
  • 23
  • Have you installed `numpy` already? If not, please do. Also, why don't you install Anaconda. It has all the necessary libraries built-in. – meW Feb 25 '19 at 13:44
  • I tried to install numpy. But that's also displaying error. – Anne Feb 25 '19 at 13:48
  • It requires `MSVC`. Either install it, or try running by clearing cache. Still I suggest leave all this mess and choose [Anaconda](https://www.anaconda.com/). – meW Feb 25 '19 at 13:55
  • I am following a tutorial. That needs pandas to be installed. Do u know how to clear the cache on cmd? – Anne Feb 25 '19 at 14:04
  • Refer [Removing pip's cache?](https://stackoverflow.com/questions/9510474/removing-pips-cache) – meW Feb 25 '19 at 14:16
  • 1
    @meW I installed microsoft build tools and then I installed numpy and pandas successfully. Thank you so much for your help – Anne Feb 25 '19 at 19:26
  • Then I suppose I can add it as a right answer. – meW Feb 25 '19 at 19:27

1 Answers1

1

Based on the Traceback calls, install the Microsoft Visual C++, followed by the installation of NumPy and Pandas library.

You or others facing the same problem can also proceed by installing Anaconda which has all the built-in libraries in it.

meW
  • 3,832
  • 7
  • 27