summaryrefslogtreecommitdiff
path: root/INSTALL.rst
diff options
context:
space:
mode:
Diffstat (limited to 'INSTALL.rst')
-rw-r--r--INSTALL.rst10
1 files changed, 6 insertions, 4 deletions
diff --git a/INSTALL.rst b/INSTALL.rst
index 4f5831e6..2e8a1cd5 100644
--- a/INSTALL.rst
+++ b/INSTALL.rst
@@ -62,18 +62,20 @@ OpenBSD
::
export PKG_PATH=http://ftp.eu.openbsd.org/pub/OpenBSD/`uname -r`/packages/`uname -m`/
- pkg_add -v python gcc
+ pkg_add -v python3 gcc
pip install psutil
NetBSD
------
+Assuming Python 3.11 (the most recent at the time of writing):
+
::
- export PKG_PATH="ftp.netbsd.org/pub/pkgsrc/packages/NetBSD/`uname -m`/`uname -r`/All"
+ export PKG_PATH="http://ftp.netbsd.org/pub/pkgsrc/packages/NetBSD/`uname -m`/`uname -r`/All"
pkg_add -v pkgin
- pkgin install python3 gcc
- pip install psutil
+ pkgin install python311-* gcc12-* py311-setuptools-* py311-pip-*
+ python3.11 -m pip install psutil
Sun Solaris
-----------