You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$ python
Python 3.5.6 |Anaconda, Inc.| (default, Jun 4 2021, 13:57:47)
[GCC 7.5.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import psutil
>>> import os
>>> psutil.Process(os.getpid()).memory_info().rss
13553664
>>> int(psutil.Process(os.getpid()).memory_info().rss)/1024**2 #MB
12.92578125
The text was updated successfully, but these errors were encountered:
The text was updated successfully, but these errors were encountered: