Python Forum
Python installing as 32bit application on my 64bit system - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: Data Science (https://python-forum.io/forum-44.html)
+--- Thread: Python installing as 32bit application on my 64bit system (/thread-10784.html)



Python installing as 32bit application on my 64bit system - abdulganiyy - Jun-06-2018

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.


RE: Python installing as 32bit application on my 64bit system - buran - Jun-06-2018

Do you install the 64-bit version of python?


RE: Python installing as 32bit application on my 64bit system - abdulganiyy - Jun-06-2018

I installed the latest python release from python.org official website. Shouldn't it install the 64bit python app for my system automatically?


RE: Python installing as 32bit application on my 64bit system - buran - Jun-06-2018

what OS? For windows there are separate 32-bit and 64-bit installers available for download


RE: Python installing as 32bit application on my 64bit system - abdulganiyy - Jun-06-2018

Windows 10


RE: Python installing as 32bit application on my 64bit system - buran - Jun-06-2018

(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-Part-1-Python-3-6-and-pip-installation-under-Windows


RE: Python installing as 32bit application on my 64bit system - abdulganiyy - Jun-06-2018

Thank you very much...I'll try this and reply soonest


RE: Python installing as 32bit application on my 64bit system - abdulganiyy - Jun-06-2018

It worked, thank you very much


RE: Python installing as 32bit application on my 64bit system - DeaD_EyE - Jun-06-2018

(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.