Merge pull request #1022 from richardcooper/homebrew_docs

Add homebrew to the install instructions
This commit is contained in:
Nate Prewitt
2017-11-02 19:27:36 -07:00
committed by GitHub
2 changed files with 27 additions and 1 deletions
+7 -1
View File
@@ -43,12 +43,18 @@ The problems that Pipenv seeks to solve are multi-faceted:
Install Pipenv Today!
---------------------
Pipenv is a python package and so can be installed using ``pip`` as you would expect.
::
$ pip install pipenv
✨🍰✨
If you have excellent taste, there's also a `fancy installation method <https://docs.pipenv.org/install.html#fancy-installation-of-pipenv>`_.
If you have excellent taste, there are various other installation methods which
prevent pipenv and its dependencies from interfering with the rest of your
Python installation. These include
`Pipsi <https://docs.pipenv.org/install.html#fancy-installation-of-pipenv>`_,
`Nix <https://docs.pipenv.org/install.html#referentially-transparent-installation-of-pipenv>`_
and `Homebrew <https://docs.pipenv.org/install.html#homebrew-installation-of-pipenv>`_.
.. toctree::
:maxdepth: 2
+20
View File
@@ -59,6 +59,9 @@ If you installed Python from source, with an installer from `python.org`_, or
via `Homebrew`_ you should already have pip. If you're on Linux and installed
using your OS package manager, you may have to `install pip <https://pip.pypa.io/en/stable/installing/>`_ separately.
If you plan to install pipenv using Homebrew you can skip this step. The
Homebrew installer takes care of pip for you.
.. _getting started tutorial: https://opentechschool.github.io/python-beginners/en/getting_started.html#what-is-python-exactly
.. _python.org: https://python.org
.. _Homebrew: https://brew.sh
@@ -252,6 +255,23 @@ To upgrade pipenv at any time::
.. _crude_installation:
☤ Homebrew Installation of Pipenv
=================================
Homebrew is a popular open-source package management system for macOS.
Installing pipenv via Homebrew will keep pipenv and all of its dependencies in
an isolated virtual environment so it doesn't interfere with the rest of your
Python installation.
Once you have installed `Homebrew <https://brew.sh/>`_ simply run::
$ brew install pipenv
To upgrade pipenv at any time::
$ brew upgrade pipenv
☤ Crude Installation of Pipenv
==============================