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

Miss Islington (bot) webhook-mailer at python.org
Tue Feb 13 22:53:37 EST 2018


https://github.com/python/cpython/commit/8e29fd4b3b3c5856a481a80d12d35da8df35b72e
commit: 8e29fd4b3b3c5856a481a80d12d35da8df35b72e
branch: 3.7
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: GitHub <noreply at github.com>
date: 2018-02-13T19:53:31-08:00
summary:

Fix installation instructions for *nix (GH-5605)


Remove pkg_add -r python from FreeBSD installation section.
Moved to OpenBSD.
(cherry picked from commit 3384d38d51a2c3450e742175db5d6d638fa5d2eb)

Co-authored-by: Eitan Adler <grimreaper at users.noreply.github.com>

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