I downloaded pandas from PyPI and I installed it (I use Python 2.7). When I try to run a little python script with pandas, I have that error : ImportError: C extension: DLL load failed: %1 is not a Win32 application. not built. If you want to import pandas from the source directory, you may need to run 'python setup.py build_ext --inplace --force' to build the C extensions first.
I know I can resolve this by typing some code in the cmd window (I found here) but my problem is that I don't have admin access and I'll never have (so I can't download anaconda and do conda install pandas). So I need to find a solution where I can "force the build of the C extension of pandas" but without using the cmd window. Is it possible ?
Thank you very much.