I have just installed python 3.9 x64, and during the install I have selected to include pip.
I can see that I indeed have x64 version (running import struct;print( 8 * struct.calcsize("P"))
in python does indeed return 64).
I run pip by calling Python39\python.exe -m pip install numpy
, however I can see that it installs the x32 version of numpy:
and if I run python, import numpy
I get the following error: OSError: [WinError 193] %1 is not a valid Win32 application
How can I make it so that pip installs x64 versions?