I am assuming Python X.X (my case 3.8) has not yet been released and is therfore not compiled to download, and if I want to run a x64 bit version I need to compile it for myself.
I have Visual Studio Express installed and have tried to build Python from the source. So far I did this:
Downloaded the source from GitHub
run
cpython\PCbuild\build.batas suggested in the documentation (I see nothing saying how to build x64 bit)Waited
When the build finishes I run python.exe and I get this:
Python 3.8.0a0 (heads/master:cac4fef886, Jun 16 2018, 12:39:58) [MSC v.1914 32 bit (Intel)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>>
This Python is a x32 bit (due to v.1914 32 bit (Intel))
I looked in SpecialBuilds.txt and no luck there either.
How do I build Python as x64 bit?
build.bat -p x64. Runbuild.bat -hto list the options. The readme explains this. The devguide told you to read it.build -h, which clearly shows how to target x64. If we have questions and answers for every straight path through a documented process, we'll drown in the noise of billions of questions.