This commit is contained in:
fazalpsinfo-cmyk 2026-07-16 19:18:33 +05:30 committed by GitHub
commit 2153ee342f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 6 additions and 1 deletions

View file

@ -3018,7 +3018,7 @@ See this `SpatiaLite Cookbook recipe <http://www.gaia-gis.it/gaia-sins/spatialit
Installing packages
===================
The :ref:`convert command <cli_convert>` and the :ref:`insert -\\-convert <cli_insert_convert>` and :ref:`query -\\-functions <cli_query_functions>` options can be provided with a Python script that imports additional modules from the ``sqlite-utils`` environment.
The :ref:`convert command <cli_convert>` and the :ref:`insert --convert <cli_insert_convert>` and :ref:`query --functions <cli_query_functions>` options can be provided with a Python script that imports additional modules from the ``sqlite-utils`` environment.
You can install packages from PyPI directly into the correct environment using ``sqlite-utils install <package>``. This is a wrapper around ``pip install``.

View file

@ -146,6 +146,11 @@ pygments_style = "sphinx"
# Only syntax highlight of code-block is used:
highlight_language = "none"
# Disable smartquotes to prevent -- from being transformed to en-dash.
# This is important for CLI documentation where --options must display
# as literal double dashes. See #493.
smartquotes = False
# If true, `todo` and `todoList` produce output, else they produce nothing.
todo_include_todos = False