Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to install pandas in pycharm

I am trying to install the pandas package in pycharm. I get the following error: unable to find vcvarsall.bat (i tried to install via the cmd but also via the project interpreter). I tried to install WSDK according to here but it did not work. I also tried the instructions in the video. Lastly i tried downloading the gcc binary according.

None of these worked. Any ideas ? I am using Windows 10, my python version is 3.4.1 and the pip version is 1.5.6 (for 64-bit)

like image 681
quant Avatar asked Aug 07 '17 14:08

quant


2 Answers

Try python -m pip install --upgrade pip followed by pip install pandas, or python -m pip install pandas.

like image 140
Uvar Avatar answered Oct 08 '22 16:10

Uvar


If you are on latest PyCharm 2018 then follow the below steps to install:

MAC:

Click on PyCharm shown on the Menu bar -> Click Preferences -> Click Project Interpreter under your Project -> Click '+' -> search for 'pandas'/'numpy' (you can specify specific version you want to install) and Click install underneath. Now you're done.

like image 11
Skadoosh Avatar answered Oct 08 '22 16:10

Skadoosh