mirror of
https://github.com/kennethreitz/pipenv.git
synced 2026-06-05 22:50:18 +00:00
Merge branch 'master' of github.com:kennethreitz/pipenv
This commit is contained in:
+5
-7
@@ -40,18 +40,16 @@ The problems that Pipenv seeks to solve are multi-faceted:
|
||||
Installation
|
||||
------------
|
||||
|
||||
::
|
||||
If you're on MacOS, use can install Pipenv easily with Homebrew::
|
||||
|
||||
$ brew install pipenv
|
||||
|
||||
Otherwise, just use pip::
|
||||
|
||||
$ pip install pipenv
|
||||
|
||||
✨🍰✨
|
||||
|
||||
There are also various other installation methods which prevent pipenv from
|
||||
interfering with the rest of your Python installation. These include
|
||||
`Pipsi <https://docs.pipenv.org/install/#fancy-installation-of-pipenv>`_,
|
||||
`Nix <https://docs.pipenv.org/install/#referentially-transparent-installation-of-pipenv>`_
|
||||
and `Homebrew <https://docs.pipenv.org/install/#homebrew-installation-of-pipenv>`_.
|
||||
|
||||
|
||||
☤ User Testimonials
|
||||
-------------------
|
||||
|
||||
+9
-12
@@ -44,23 +44,20 @@ The problems that Pipenv seeks to solve are multi-faceted:
|
||||
Install Pipenv Today!
|
||||
---------------------
|
||||
|
||||
If you're on MacOS, use can install Pipenv easily with Homebrew::
|
||||
|
||||
$ brew install pipenv
|
||||
|
||||
Otherwise, just use pip::
|
||||
|
||||
$ pip install pipenv
|
||||
|
||||
✨🍰✨
|
||||
|
||||
.. note:: The use of **Python 3** is *highly* preferred over Python 2, when installing Pipenv. Compatibility with three virtualenvs is greatly improved when using Python 3 as the installation target.
|
||||
|
||||
—*Kenneth Reitz*
|
||||
|
||||
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 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/#fancy-installation-of-pipenv>`_,
|
||||
`Nix <https://docs.pipenv.org/install/#referentially-transparent-installation-of-pipenv>`_
|
||||
and `Homebrew <https://docs.pipenv.org/install/#homebrew-installation-of-pipenv>`_.
|
||||
|
||||
.. toctree::
|
||||
:maxdepth: 2
|
||||
|
||||
+2
-2
@@ -805,12 +805,12 @@ def do_install_dependencies(
|
||||
|
||||
# Output only default dependencies
|
||||
if not dev:
|
||||
click.echo('\n'.join(d[0] for d in deps_list))
|
||||
click.echo('\n'.join(d[0] for d in sorted(deps_list)))
|
||||
sys.exit(0)
|
||||
|
||||
# Output only dev dependencies
|
||||
if dev:
|
||||
click.echo('\n'.join(d[0] for d in dev_deps_list))
|
||||
click.echo('\n'.join(d[0] for d in sorted(dev_deps_list)))
|
||||
sys.exit(0)
|
||||
|
||||
procs = []
|
||||
|
||||
Reference in New Issue
Block a user