diff options
author | Eitan Adler <grimreaper@users.noreply.github.com> | 2018-02-14 02:44:01 (GMT) |
---|---|---|
committer | Mariatta <Mariatta@users.noreply.github.com> | 2018-02-14 02:44:01 (GMT) |
commit | 3384d38d51a2c3450e742175db5d6d638fa5d2eb (patch) | |
tree | 4d6385e21d504438f0729582feb24b5547f15794 /Doc/using | |
parent | 2b86f4cb2cd339f545804a9abb8c4d4cc28d9488 (diff) | |
download | cpython-3384d38d51a2c3450e742175db5d6d638fa5d2eb.zip cpython-3384d38d51a2c3450e742175db5d6d638fa5d2eb.tar.gz cpython-3384d38d51a2c3450e742175db5d6d638fa5d2eb.tar.bz2 |
Fix installation instructions for *nix (GH-5605)
Remove pkg_add -r python from FreeBSD installation section.
Moved to OpenBSD.
Diffstat (limited to 'Doc/using')
-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 ccdf84d..ac99b69 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 |