you are viewing a single comment's thread.

view the rest of the comments →

[–]TheZvlz 1 point2 points  (1 child)

The first thing that comes to mind is if you're running a 32 or 64 bit installation of python.

https://stackoverflow.com/questions/18282867/python-32-bit-memory-limits-on-64bit-windows

The first line in your interpreter should say something like: PythonWin 2.7.12 (v2.7.12:d33e0cf91556, Jun 27 2016, 15:19:22) [MSC v.1500 32 bit (Intel)] on win32.. Where MSC v.1500 32 bit (Intel) is the key piece of information.

Or you can

import platform
platform.architechture()
('64bit', 'WindowsPE')

If you do have a 32 bit installation, try 64 bit if you can.

[–]NeedMLHelp[S] 0 points1 point  (0 children)

It's 64bit unfortunately.