-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
memory_maps support with Ubuntu 18.04 LTS #1627
Comments
Weird. Please paste the output of |
Here is it: import os
os.system("cat /proc/self/smaps|clip.exe") Output:
import os
with open ("/proc/self/smaps", "r") as smaps:
smaps_out = smaps.read()
os.system("echo \"" + smaps_out +"\" | clip.exe") Output:
Notice this is Ubuntu 18.04 LTS under WSL (Windows 10):
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Platform
Ubuntu 18.04 LTS
Psutil version 5.6.5
Python 3.6.8
Bug description
The memory_maps documentation example does not work with Ubuntu 18.04 LTS
Error
KeyError: b'Rss:'
Test case
Test results
The text was updated successfully, but these errors were encountered: