Python Forum

Full Version: Python installing as 32bit application on my 64bit system
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello geeks, I am just confused why everytime I install python on my 64bit system, it is showing as a 32bit application.

Is there any issue with this or will the running of code be affected in any way?

Thank you for your support.
Do you install the 64-bit version of python?
I installed the latest python release from python.org official website. Shouldn't it install the 64bit python app for my system automatically?
what OS? For windows there are separate 32-bit and 64-bit installers available for download
Windows 10
(Jun-06-2018, 02:05 PM)buran Wrote: [ -> ]For windows there are separate 32-bit and 64-bit installers available for download
https://www.python.org/downloads/release/python-365/
64-bit
Windows x86-64 embeddable zip file
Windows x86-64 executable installer
Windows x86-64 web-based installer

32-bit
Windows x86 embeddable zip file
Windows x86 executable installer
Windows x86 web-based installer
Also check https://python-forum.io/Thread-Basic-Par...er-Windows
Thank you very much...I'll try this and reply soonest
It worked, thank you very much
(Jun-06-2018, 01:33 PM)abdulganiyy Wrote: [ -> ]Is there any issue with this or will the running of code be affected in any way?

Not direct. Windows and the most Linux distributions have 32 bit and 64 bit libraries installed.
I guess float have the double accuracy in 64 bit.

If you want to install extensions like numpy manually (the unofficial binary distribution), you've to chose the same architecture + supported Python Version.

If you go a deeper and want to use C libraries with ctypes or cffi, the Interpreter must have the same architecture (32/64 bit) to access this libraries.

For a beginner this does not matter.