6

There is a way to run Pycharm in 32bit mode for reducing memory consumption. Where can I set that. (Pycharm has documented this, but I can't find the google phrase to get me to that page.)

shabda
  • 1,668
  • 1
  • 18
  • 28

3 Answers3

6

Most likely you are looking for this document.

monk-time
  • 2,123
  • 1
  • 14
  • 17
CrazyCoder
  • 389,263
  • 172
  • 990
  • 904
1

You can alternatively set VM options from your pycharm path $PATH/pycharm/pycharm-2.7.1/bin in file pycharm64.vmoptions example:

-Xms128m
-Xmx800m
-XX:MaxPermSize=350m
-XX:ReservedCodeCacheSize=64m
-XX:+UseCodeCacheFlushing
-ea
-Dsun.io.useCanonCaches=false
Ian Juma
  • 107
  • 1
  • 12
0

I am not sure which OS you are running, but since pycharm is built over the JVM, you can pass this argument to the JVM launch parameters, which will force JVM to run in 32bit mode: -d32

Community
  • 1
  • 1
zengr
  • 38,346
  • 37
  • 130
  • 192