I cant download module "pandas" on pycharm or CMD

346 views Asked by At

managed to download some modules on pycharm it's self but pandas didn't install, so I tried to install on CMD and that replied with this:

C:\WINDOWS\system32>py -m pip install pandas Collecting pandas Using cached pandas-1.1.3.tar.gz (5.2 MB) Installing build dependencies ... error ERROR: Command errored out with exit status 1:

Any help would be appreciated.

3

There are 3 answers

8
BeeFriedman On

Try the following.

pip install pipwin

and then

pipwin install pandas
0
Dominic Bühler On

And if the cache might be corrupted in any way, you could use the --no-cache-dir flag for pip.

See https://pip.pypa.io/en/stable/reference/pip_install/#caching for more information.

0
adam On

I had python 3.9 which is not yet supported by these modules I think. I downloaded python 3.8.6 and they download fine. The "pip 'command'" and "python -m 'command'" still don't work but downloading through pycharm works fine.