I am trying to install some python packages, for example pandas, on a remote Unix server (Solaris x86) that does not reach the internet. Server runs python 2.7. I can copy files through winSCP tho. I have done a bit of research and found out I can download the .whl files on my windows machine and move it on the Unix server, then pip install it.
I found two wheel files in the pandas website, I wasn't sure which one is compatible with the machine, so I tried both, and was faced with this error
Is there another wheel file I should've downloaded? Or is there another way or a workaround to get pandas 0.24 installed on this machine?
Thank you!