summaryrefslogtreecommitdiff
path: root/INSTALL.rst
diff options
context:
space:
mode:
authorGiampaolo Rodola <g.rodola@gmail.com>2020-12-19 14:42:02 +0100
committerGiampaolo Rodola <g.rodola@gmail.com>2020-12-19 14:42:02 +0100
commitadf5aa0ab0a6e91a8e3cd659d5b91a5dcdee1b4a (patch)
treee618be94ada77ce19594f90e338d09a066c22b6f /INSTALL.rst
parent2c1189553d2fae85262ac93f9ba498f445536394 (diff)
downloadpsutil-adf5aa0ab0a6e91a8e3cd659d5b91a5dcdee1b4a.tar.gz
add awaiting-response bot
Signed-off-by: Giampaolo Rodola <g.rodola@gmail.com>
Diffstat (limited to 'INSTALL.rst')
-rw-r--r--INSTALL.rst11
1 files changed, 5 insertions, 6 deletions
diff --git a/INSTALL.rst b/INSTALL.rst
index 5d4a87ae..22693b56 100644
--- a/INSTALL.rst
+++ b/INSTALL.rst
@@ -7,9 +7,8 @@ Linux, Windows, macOS (wheels)
Pre-compiled wheels are distributed for these platforms, so you won't have to
install a C compiler. All you have to do is::
- pip install --user psutil
+ pip install psutil
-This (``--user``) will install psutil as a limited user (not system-wide).
If wheels are not available for your platform or architecture, or you whish to
build & install psutil from sources, keep reading.
@@ -19,12 +18,12 @@ Linux (build)
Ubuntu / Debian::
sudo apt-get install gcc python3-dev
- pip install --user --no-binary :all: psutil
+ pip install --no-binary :all: psutil
RedHat / CentOS::
sudo yum install gcc python3-devel
- pip install --user --no-binary :all: psutil
+ pip install --no-binary :all: psutil
Windows (build)
---------------
@@ -35,14 +34,14 @@ Here's a couple of guides describing how to do it: `link <https://blog.ionelmc.r
and `link <https://cpython-core-tutorial.readthedocs.io/en/latest/build_cpython_windows.html>`__.
Once VS is installed do::
- pip install --user --no-binary :all: psutil
+ pip install --no-binary :all: psutil
macOS (build)
-------------
Install `Xcode <https://developer.apple.com/downloads/?name=Xcode>`__ then run::
- pip install --user --no-binary :all: psutil
+ pip install --no-binary :all: psutil
FreeBSD
-------