diff options
author | Giampaolo Rodola <g.rodola@gmail.com> | 2021-01-15 19:07:38 +0100 |
---|---|---|
committer | Giampaolo Rodola <g.rodola@gmail.com> | 2021-01-15 19:07:38 +0100 |
commit | 4ad3380bb312b6ea06717e3adc1f60ac8daf4a05 (patch) | |
tree | 923f2b548ada7533fb6e794b8253941ec225b6f6 /docs/index.rst | |
parent | 3223228b0558e42508cf9f8cce84d89c79b5c52b (diff) | |
parent | e80cabe5206fd7ef14fd6a47e2571f660f95babf (diff) | |
download | psutil-new-cpu-count.tar.gz |
Merge branch 'master' into new-cpu-countnew-cpu-count
Diffstat (limited to 'docs/index.rst')
-rw-r--r-- | docs/index.rst | 23 |
1 files changed, 8 insertions, 15 deletions
diff --git a/docs/index.rst b/docs/index.rst index 612cafb8..595130cd 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -73,28 +73,21 @@ Sponsors Supporters ---------- -None yet. - .. raw:: html + <div> + <a href="https://github.com/dbwiddis"><img height="40" width="40" title="Daniel Widdis" src="https://avatars1.githubusercontent.com/u/9291703?s=88&v=4" /></a> + <a href="https://github.com/aristocratos"><img height="40" width="40" title="aristocratos" src="https://avatars3.githubusercontent.com/u/59659483?s=96&v=4" /></a> + </div> + <br /> <sup><a href="https://github.com/sponsors/giampaolo">add your avatar</a></sup> Install ======= -Linux Ubuntu / Debian:: - - sudo apt-get install gcc python3-dev - sudo pip3 install psutil - -Linux Redhat:: - - sudo yum install gcc python3-devel - sudo pip3 install psutil - -Windows:: +On Linux, Windows, macOS:: - pip3 install psutil + pip install psutil For other platforms see more detailed `install <https://github.com/giampaolo/psutil/blob/master/INSTALL.rst>`_ @@ -2438,7 +2431,7 @@ Kill process tree timeout=None, on_terminate=None): """Kill a process tree (including grandchildren) with signal "sig" and return a (gone, still_alive) tuple. - "on_terminate", if specified, is a callabck function which is + "on_terminate", if specified, is a callback function which is called as soon as a child terminates. """ assert pid != os.getpid(), "won't kill myself" |