Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How much ram can python use? [closed]

Tags:

python

If I use python (32 bit version) on a machine with for example 64Gb ram , will it be able to use these 64Gb of ram. Or does this depend on the Operating System ?

like image 476
Olivier_s_j Avatar asked Jan 13 '23 11:01

Olivier_s_j


1 Answers

Python does not itself use any mechanisms for extending past the per-process userspace memory limit of the operating system. There are however modules for and means of doing so. So the answer is "depends on how much work you're willing to do".

like image 71
Ignacio Vazquez-Abrams Avatar answered Jan 22 '23 07:01

Ignacio Vazquez-Abrams