3
0
Fork 0

Add more install docs

This commit is contained in:
Lance Edgar 2023-11-24 17:32:45 -06:00
parent be1e73d7f0
commit f9f2bcc3d0
6 changed files with 113 additions and 2 deletions

View file

@ -91,7 +91,8 @@ Glossary
package
Generally refers to a proper Python package, i.e. a collection of
modules etc. which is installed via ``pip``.
modules etc. which is installed via ``pip``. See also
:doc:`narr/install/pkg`.
settings table
Table in the :term:`app database` which is used to store
@ -102,4 +103,9 @@ Glossary
A top-level :term:`command` may expose one or more subcommands,
for the overall command line interface. Subcommands are the real
workhorse; each can perform a different function. See also
:class:`~wuttjamaican.cmd.base.Subcommand`.
:doc:`narr/cli/subcommands`.
virtual environment
This term comes from the broader Python world and refers to an
isolated way to install :term:`packages<package>`. See also
:doc:`narr/install/venv`.