Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions docs/source/python/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,27 @@ command:

.. _python-conda-differences:

tzdata on non-FHS-compliant systems
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

On environments without standard filesystem layouts (for example,
non-FHS-compliant systems such as NixOS, minimal containers, or hermetic
build environments), Arrow may fail to locate the timezone database and
produce errors such as:

.. code-block:: text

ArrowInvalid: Cannot locate or parse timezone '<timezone>'
discover_tz_dir failed to find zoneinfo

Arrow expects tzdata to be available in standard system locations (
``/usr/share/zoneinfo`` on typical Linux distributions). If tzdata
is installed in a non-standard path, it may not be discovered automatically.

If you encounter this issue, ensure that a timezone database is installed
and accessible in a standard system location, or configure your environment
appropriately.

Differences between conda-forge packages
----------------------------------------

Expand Down