これを使用して現在のプロセスを取得しています。私のマシンでは動作しますが、別のマシンで実行すると動作しません。
for p in psutil.process_iter():
try:
proc_names[p.pid] = p.name()
except psutil.Error:
pass
for c in psutil.net_connections(kind='inet'):
# etc...
このエラーが発生しています
proc_names[p.pid] = p.name()
TypeError: 'str' object is not callable
p.nameを使用して、代わりにこれを取得します
for c in psutil.net_connections(kind='inet'):
AttributeError: 'module' object has no attribute 'net_connections'