cannot install pandas on pycharm community 2019.3.1
i cannot install pandas on pycharm 2019.3.1
using interpreter:
subprocess.CalledProcessError: Command '['C:\\Users\\wawan\\PycharmProjects\\coba\\venv\\Scripts\\python.exe', '-m', 'pip', '--disable-pip-version-check', 'wheel', '--no-deps', '-w', 'C:\\Users\\wawan\\AppData\\Local\\Temp\\tmpn633k0mh', '--quiet', 'numpy>=1.13.3']' returned non-zero exit status 1.

using terminal:
Command "python setup.py egg_info" failed with error code 1 in C:\Users\wawan\AppData\Local\Temp\pip-install-kn8vq0sy\pandas\

请先登录再写评论。
i resolved it, follow the error and i did it:
1. install wheel
2. install cython (and got error microsoft c++ 14) install visual studios build tools
3. install numpy
4. install pandas.
and ... yes it is installed succesfully
Actually PyCharm installs package from path C:\Users\<user-name>\PyCharmProject\pyCharmProject1\venv\bin>pip install pandas
In this path there is python different version. This is happened, because while creating project in PyCharm, it automatically sets wrong version of python. To confirm this run same command manually from that path. So, while creating project, select python version from C://ProgramFiles/Python38/bin.