[Python-checkins] Fix installation instructions for *nix (GH-5605)

Mariatta webhook-mailer at python.org
Tue Feb 13 21:44:04 EST 2018


https://github.com/python/cpython/commit/3384d38d51a2c3450e742175db5d6d638fa5d2eb
commit: 3384d38d51a2c3450e742175db5d6d638fa5d2eb
branch: master
author: Eitan Adler <grimreaper at users.noreply.github.com>
committer: Mariatta <Mariatta at users.noreply.github.com>
date: 2018-02-13T18:44:01-08:00
summary:

Fix installation instructions for *nix (GH-5605)

Remove pkg_add -r python from FreeBSD installation section.
Moved to OpenBSD.

files:
M Doc/using/unix.rst

diff --git a/Doc/using/unix.rst b/Doc/using/unix.rst
index ccdf84dcfa5e..ac99b699868f 100644
--- a/Doc/using/unix.rst
+++ b/Doc/using/unix.rst
@@ -41,9 +41,11 @@ On FreeBSD and OpenBSD
 
 * FreeBSD users, to add the package use::
 
-     pkg_add -r python
+     pkg install python3
+
+* OpenBSD users, to add the package use::
 
-* OpenBSD users use::
+     pkg_add -r python
 
      pkg_add ftp://ftp.openbsd.org/pub/OpenBSD/4.2/packages/<insert your architecture here>/python-<version>.tgz
 



More information about the Python-checkins mailing list