diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2018-02-14 04:00:38 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-02-14 04:00:38 (GMT) |
commit | 1b9bbbcad3c08e9ea2a3e877bd86a23ca89d35b7 (patch) | |
tree | 6a9d7e8d3b7c5abb3e630f9b9703ed9756029c61 /Doc/using/unix.rst | |
parent | b93a52b136fd2285f2891eef91c50e3d36ea6f36 (diff) | |
download | cpython-1b9bbbcad3c08e9ea2a3e877bd86a23ca89d35b7.zip cpython-1b9bbbcad3c08e9ea2a3e877bd86a23ca89d35b7.tar.gz cpython-1b9bbbcad3c08e9ea2a3e877bd86a23ca89d35b7.tar.bz2 |
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@users.noreply.github.com>
Diffstat (limited to 'Doc/using/unix.rst')
-rw-r--r-- | Doc/using/unix.rst | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Doc/using/unix.rst b/Doc/using/unix.rst index 8b96ebe..dc05e0d 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 |