Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
psutil ライブラリを使用して、Windows プラットフォームで単一のプロセスによって使用されたメモリ量を取得するにはどうすればよいですか? (私はパーセンテージを持ちたくありません、私はバイト単位で量を知りたいです)
以下を使用できます。
psutil.virtual_memory().used
OS全体のメモリ使用量をバイト単位で求めるのですが、個々のプロセスはどうでしょうか。
ありがとう、