Skip to content

Commit

Permalink
Update instructions to install db extras
Browse files Browse the repository at this point in the history
ref #4270
  • Loading branch information
daviddavis committed Mar 8, 2019
1 parent e205eb8 commit 62a2628
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions docs/installation/instructions.rst
Original file line number Diff line number Diff line change
Expand Up @@ -43,17 +43,18 @@ PyPI Installation

$ sudo apt-get install python3-venv

3. Install Pulp (install ``pulpcore-plugin``, and ``pulpcore`` itself will be installed as
a dependency)::
3. Install Pulp with the set of packages for the relational database you prefer to use. Right now we
have extra sets for postgresql or MySQL/mariadb::

$ pip install pulpcore-plugin
$ pip install pulpcore-plugin pulpcore[postgres]
$ pip install pulpcore-plugin pulpcore[mysql]

.. note::

To install from source, clone git repositories and do a local, editable pip installation::

$ git clone https://github.com/pulp/pulpcore.git
$ pip install -e ./pulpcore
$ pip install -e ./pulpcore[postgres]
$ git clone https://github.com/pulp/pulpcore-plugin.git
$ pip install -e ./pulpcore-plugin

Expand Down

0 comments on commit 62a2628

Please sign in to comment.